Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 134 of file misc.c.
Referenced by DisplaySelectedDeviceProperties(), SecurityPageProc(), UpdateControlStates(), UpdateDevicesListViewControl(), and UpdatePrincipalInfo().
{ int Index; Index = ListView_GetNextItem(hwnd, -1, LVNI_SELECTED); if (Index != -1) { LVITEM li; li.mask = LVIF_PARAM; li.iItem = Index; li.iSubItem = 0; if (ListView_GetItem(hwnd, &li)) { return li.lParam; } } return 0; }