manipulating listbox items
| 1080 | |
| 1081 | // manipulating listbox items |
| 1082 | int AddString(LPCTSTR lpszString) |
| 1083 | { |
| 1084 | ATLASSERT(::IsWindow(m_hWnd)); |
| 1085 | return (int)::SendMessage(m_hWnd, CB_ADDSTRING, 0, (LPARAM)lpszString); |
| 1086 | } |
| 1087 | |
| 1088 | int DeleteString(UINT nIndex) |
| 1089 | { |
nothing calls this directly
no outgoing calls
no test coverage detected