MCPcopy Create free account
hub / github.com/Nevcairiel/LAVFilters / AddComboBoxEntryWithData

Function AddComboBoxEntryWithData

decoder/LAVVideo/VideoSettingsProp.cpp:188–197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186}
187
188static void AddComboBoxEntryWithData(HWND hwnd, int nIDDlgItem, WCHAR *pszText, UINT Data)
189{
190 // add the entry
191 LRESULT ret = SendDlgItemMessage(hwnd, nIDDlgItem, CB_ADDSTRING, 0, (LPARAM)pszText);
192 if (ret < 0)
193 return;
194
195 // set its data
196 SendDlgItemMessage(hwnd, nIDDlgItem, CB_SETITEMDATA, ret, Data);
197}
198
199static void SelectComboBoxItemByValue(HWND hwnd, int nIDDlgItem, UINT Data)
200{

Callers 1

OnActivateMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected