| 1438 | } |
| 1439 | |
| 1440 | LRESULT ComboBox_AddStringA2W ( UINT uCP, HWND hwnd, LPCSTR lpString ) |
| 1441 | { |
| 1442 | WCHAR wsz[1024] = L""; |
| 1443 | MBCSToWChar ( uCP, lpString, wsz, COUNTOF ( wsz ) ); |
| 1444 | return SendMessageW ( hwnd, CB_ADDSTRING, 0, ( LPARAM ) wsz ); |
| 1445 | } |
| 1446 | |
| 1447 | |
| 1448 | //============================================================================= |
nothing calls this directly
no outgoing calls
no test coverage detected