Home
last modified time | relevance | path

Searched refs:adjustedStyle (Results 1 – 3 of 3) sorted by relevance

/reactos/win32ss/user/user32/windows/
H A Dwinpos.c36 LONG adjustedStyle;
48 adjustedStyle = style & ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
50 adjustedStyle = style;
53 AdjustWindowRectEx(&rc, adjustedStyle, ((style & WS_POPUP) && GetMenu(hwnd)), exstyle);
/reactos/win32ss/user/ntuser/
H A Dwinpos.c947 LONG adjustedStyle; in co_WinPosGetMinMaxInfo() local
961 adjustedStyle = style & ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */ in co_WinPosGetMinMaxInfo()
963 adjustedStyle = style; in co_WinPosGetMinMaxInfo()
968 adjust = IntGetWindowBorders(adjustedStyle, exstyle); in co_WinPosGetMinMaxInfo()
971 …if ((adjustedStyle & WS_THICKFRAME) && !(adjustedStyle & WS_CHILD) && !(adjustedStyle & WS_MINIMIZ… in co_WinPosGetMinMaxInfo()
976 …if ((adjustedStyle & WS_THICKFRAME) && (adjustedStyle & WS_CHILD) && !(adjustedStyle & WS_MINIMIZE… in co_WinPosGetMinMaxInfo()
/reactos/modules/rostests/winetests/user32/
H A Dwin.c7537 LONG adjustedStyle; in test_thick_child_size_winproc() local
7550 adjustedStyle = test_thick_child_style; in test_thick_child_size_winproc()
7551 if ((adjustedStyle & WS_CAPTION) == WS_CAPTION) in test_thick_child_size_winproc()
7552 adjustedStyle &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */ in test_thick_child_size_winproc()
7554 AdjustWindowRectEx(&rect, adjustedStyle, FALSE, test_thick_child_exStyle); in test_thick_child_size_winproc()
7623 LONG adjustedStyle; in test_thick_child_size() local
7713 adjustedStyle = styles[i]; in test_thick_child_size()
7714 if ((adjustedStyle & WS_CAPTION) == WS_CAPTION) in test_thick_child_size()
7715 adjustedStyle &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */ in test_thick_child_size()
7717 AdjustWindowRectEx(&adjustedParentRect, adjustedStyle, FALSE, test_thick_child_exStyle); in test_thick_child_size()