MCPcopy Create free account
hub / github.com/Aleksoid1978/VideoRenderer / ComboBox_AddStringData

Function ComboBox_AddStringData

Source/PropPage.cpp:37–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35}
36
37inline void ComboBox_AddStringData(HWND hWnd, int nIDComboBox, LPCWSTR str, LONG_PTR data)
38{
39 LRESULT lValue = SendDlgItemMessageW(hWnd, nIDComboBox, CB_ADDSTRING, 0, (LPARAM)str);
40 if (lValue != CB_ERR) {
41 SendDlgItemMessageW(hWnd, nIDComboBox, CB_SETITEMDATA, lValue, data);
42 }
43}
44
45inline LONG_PTR ComboBox_GetCurItemData(HWND hWnd, int nIDComboBox)
46{

Callers 1

OnActivateMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected