Home
last modified time | relevance | path

Searched refs:lpmi (Results 1 – 4 of 4) sorted by relevance

/reactos/win32ss/user/user32/misc/
H A Ddisplay.c428 LPMONITORINFO lpmi) in GetMonitorInfoA() argument
430 if (lpmi->cbSize == sizeof (MONITORINFO)) in GetMonitorInfoA()
432 return NtUserGetMonitorInfo(hMonitor, lpmi); in GetMonitorInfoA()
434 else if (lpmi->cbSize != sizeof (MONITORINFOEXA)) in GetMonitorInfoA()
449 memcpy(lpmi, &miExW, sizeof (MONITORINFO)); in GetMonitorInfoA()
451 ((LPMONITORINFOEXA)lpmi)->szDevice, CCHDEVICENAME, in GetMonitorInfoA()
471 LPMONITORINFO lpmi) in GetMonitorInfoW() argument
473 return NtUserGetMonitorInfo(hMonitor, lpmi); in GetMonitorInfoW()
/reactos/win32ss/user/ntuser/
H A Dmenu.c883 if(lpmi->fMask & MIM_HELPID) in IntGetMenuInfo()
886 lpmi->cyMax = Menu->cyMax; in IntGetMenuInfo()
889 if(lpmi->fMask & MIM_STYLE) in IntGetMenuInfo()
896 lpmi->iItem = Menu->iItem; in IntGetMenuInfo()
901 lpmi->iTop = Menu->iTop; in IntGetMenuInfo()
908 lpmi->Wnd = Menu->hWnd; in IntGetMenuInfo()
918 if(lpmi->fMask & MIM_HELPID) in IntSetMenuInfo()
921 Menu->cyMax = lpmi->cyMax; in IntSetMenuInfo()
924 if(lpmi->fMask & MIM_STYLE) in IntSetMenuInfo()
945 Menu->iTop = lpmi->iTop; in IntSetMenuInfo()
[all …]
/reactos/dll/win32/comdlg32/
H A Dfontdlg.c769 LPMEASUREITEMSTRUCT lpmi=(LPMEASUREITEMSTRUCT)lParam; in CFn_WMMeasureItem() local
776 lpmi->itemHeight = height + 2; in CFn_WMMeasureItem()
782 if( tm.tmHeight > lpmi->itemHeight) lpmi->itemHeight = tm.tmHeight; in CFn_WMMeasureItem()
/reactos/win32ss/user/user32/windows/
H A Dmenu.c971 ITEM * lpmi; in GetMenuItemID() local
972 if (!(lpmi = MENU_FindItem(&hMenu,(UINT*)&nPos,MF_BYPOSITION))) return -1; in GetMenuItemID()
973 if (lpmi->spSubMenu) return -1; in GetMenuItemID()
974 return lpmi->wID; in GetMenuItemID()