Home
last modified time | relevance | path

Searched refs:set_bits (Results 1 – 2 of 2) sorted by relevance

/reactos/win32ss/user/ntuser/
H A Dscrollbar.c854 ULONG old_style, set_bits = 0, clear_bits = 0; in co_UserShowScrollBar() local
868 if (fShowH) set_bits |= WS_HSCROLL; in co_UserShowScrollBar()
873 if (fShowV) set_bits |= WS_VSCROLL; in co_UserShowScrollBar()
881 old_style = IntSetStyle(Wnd, set_bits, clear_bits); in co_UserShowScrollBar()
882 if ((old_style & clear_bits) != 0 || (old_style & set_bits) != set_bits) in co_UserShowScrollBar()
H A Dwindow.c145 IntSetStyle( PWND pwnd, ULONG set_bits, ULONG clear_bits ) in IntSetStyle() argument
149 styleNew = (pwnd->style | set_bits) & ~clear_bits; in IntSetStyle()