Searched refs:WindowStyle (Results 1 – 7 of 7) sorted by relevance
/reactos/sdk/lib/3rdparty/strmbase/ |
H A D | window.c | 289 HRESULT WINAPI BaseControlWindowImpl_put_WindowStyle(IVideoWindow *iface, LONG WindowStyle) in BaseControlWindowImpl_put_WindowStyle() argument 296 TRACE("(%p/%p)->(%x -> %x)\n", This, iface, old, WindowStyle); in BaseControlWindowImpl_put_WindowStyle() 298 if (WindowStyle & (WS_DISABLED|WS_HSCROLL|WS_MAXIMIZE|WS_MINIMIZE|WS_VSCROLL)) in BaseControlWindowImpl_put_WindowStyle() 301 SetWindowLongW(This->baseWindow.hWnd, GWL_STYLE, WindowStyle); in BaseControlWindowImpl_put_WindowStyle() 303 This->baseWindow.WindowStyles = WindowStyle; in BaseControlWindowImpl_put_WindowStyle() 308 HRESULT WINAPI BaseControlWindowImpl_get_WindowStyle(IVideoWindow *iface, LONG *WindowStyle) in BaseControlWindowImpl_get_WindowStyle() argument 312 TRACE("(%p/%p)->(%p)\n", This, iface, WindowStyle); in BaseControlWindowImpl_get_WindowStyle() 314 *WindowStyle = This->baseWindow.WindowStyles; in BaseControlWindowImpl_get_WindowStyle()
|
/reactos/base/applications/osk/ |
H A D | main.c | 621 LONG WindowStyle; in OSK_Command() local 625 WindowStyle = GetWindowLongW(hWndControl, GWL_STYLE); in OSK_Command() 626 if ((WindowStyle & BS_AUTOCHECKBOX) == BS_AUTOCHECKBOX) in OSK_Command() 714 LONG WindowStyle; in OSK_ReleaseKey() local 719 WindowStyle = GetWindowLongW(hWndControl, GWL_STYLE); in OSK_ReleaseKey() 720 if ((WindowStyle & BS_AUTOCHECKBOX) != BS_AUTOCHECKBOX) return FALSE; in OSK_ReleaseKey()
|
/reactos/sdk/include/psdk/ |
H A D | control.idl | 90 [propput] HRESULT WindowStyle( [in] LONG WindowStyle ); 91 [propget] HRESULT WindowStyle( [out, retval] LONG *WindowStyle );
|
/reactos/dll/win32/wshom.ocx/ |
H A D | wshom.idl | 492 HRESULT WindowStyle([out, retval] int* ShowCmd); 495 HRESULT WindowStyle([in] int ShowCmd); 529 [in, optional] VARIANT* WindowStyle,
|
/reactos/modules/rostests/winetests/wshom/ |
H A D | wshom.idl | 492 HRESULT WindowStyle([out, retval] int* ShowCmd); 495 HRESULT WindowStyle([in] int ShowCmd); 529 [in, optional] VARIANT* WindowStyle,
|
/reactos/sdk/include/reactos/wine/ |
H A D | strmbase.h | 456 HRESULT WINAPI BaseControlWindowImpl_put_WindowStyle(IVideoWindow *iface, LONG WindowStyle); 457 HRESULT WINAPI BaseControlWindowImpl_get_WindowStyle(IVideoWindow *iface, LONG *WindowStyle);
|
/reactos/dll/directx/wine/quartz/ |
H A D | filtergraph.c | 4217 static HRESULT WINAPI VideoWindow_put_WindowStyle(IVideoWindow *iface, LONG WindowStyle) in VideoWindow_put_WindowStyle() argument 4223 TRACE("(%p/%p)->(%d)\n", This, iface, WindowStyle); in VideoWindow_put_WindowStyle() 4230 hr = IVideoWindow_put_WindowStyle(pVideoWindow, WindowStyle); in VideoWindow_put_WindowStyle() 4237 static HRESULT WINAPI VideoWindow_get_WindowStyle(IVideoWindow *iface, LONG *WindowStyle) in VideoWindow_get_WindowStyle() argument 4243 TRACE("(%p/%p)->(%p)\n", This, iface, WindowStyle); in VideoWindow_get_WindowStyle() 4250 hr = IVideoWindow_get_WindowStyle(pVideoWindow, WindowStyle); in VideoWindow_get_WindowStyle()
|