manipulating listbox items
| 704 | |
| 705 | // manipulating listbox items |
| 706 | int AddString(LPCTSTR lpszItem) |
| 707 | { |
| 708 | ATLASSERT(::IsWindow(m_hWnd)); |
| 709 | return (int)::SendMessage(m_hWnd, LB_ADDSTRING, 0, (LPARAM)lpszItem); |
| 710 | } |
| 711 | |
| 712 | int DeleteString(UINT nIndex) |
| 713 | { |
nothing calls this directly
no outgoing calls
no test coverage detected