Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 427 of file startrec.c.
Referenced by StartRecDlgProc().
{ LRESULT lIndex; LONG index; PBOOTRECORD pRecord; lIndex = SendDlgItemMessageW(hwndDlg, IDC_STRECOSCOMBO, CB_GETCOUNT, (WPARAM)0, (LPARAM)0); if (lIndex == CB_ERR) return; for (index = 0; index <lIndex; index++) { pRecord = (PBOOTRECORD) SendDlgItemMessageW(hwndDlg, IDC_STRECOSCOMBO, CB_GETITEMDATA, (WPARAM)index, (LPARAM)0); if ((INT_PTR)pRecord != CB_ERR) { HeapFree(GetProcessHeap(), 0, pRecord); } } SendDlgItemMessageW(hwndDlg, IDC_STRECOSCOMBO, CB_RESETCONTENT, (WPARAM)0, (LPARAM)0); }