strmbase: Implement BaseControlWindow.
[wine/multimedia.git] / dlls / user32 / driver.c
blob6e21ca2937b7b633da08a581f0203db29fcdd664
1 /*
2 * USER driver support
4 * Copyright 2000, 2005 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdarg.h>
22 #include <stdio.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winuser.h"
26 #include "wine/debug.h"
28 #include "user_private.h"
30 static USER_DRIVER null_driver, lazy_load_driver;
32 const USER_DRIVER *USER_Driver = &lazy_load_driver;
33 static DWORD driver_load_error;
35 /* load the graphics driver */
36 static const USER_DRIVER *load_driver(void)
38 char buffer[MAX_PATH], libname[32], *name, *next;
39 HKEY hkey;
40 void *ptr;
41 HMODULE graphics_driver;
42 USER_DRIVER *driver, *prev;
44 strcpy( buffer, "x11" ); /* default value */
45 /* @@ Wine registry key: HKCU\Software\Wine\Drivers */
46 if (!RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\Drivers", &hkey ))
48 DWORD type, count = sizeof(buffer);
49 RegQueryValueExA( hkey, "Graphics", 0, &type, (LPBYTE) buffer, &count );
50 RegCloseKey( hkey );
53 name = buffer;
54 while (name)
56 next = strchr( name, ',' );
57 if (next) *next++ = 0;
59 snprintf( libname, sizeof(libname), "wine%s.drv", name );
60 if ((graphics_driver = LoadLibraryA( libname )) != 0) break;
61 name = next;
64 if (!graphics_driver)
65 driver_load_error = GetLastError();
67 driver = HeapAlloc( GetProcessHeap(), 0, sizeof(*driver) );
68 *driver = null_driver;
70 if (graphics_driver)
72 #define GET_USER_FUNC(name) \
73 do { if ((ptr = GetProcAddress( graphics_driver, #name ))) driver->p##name = ptr; } while(0)
75 GET_USER_FUNC(ActivateKeyboardLayout);
76 GET_USER_FUNC(Beep);
77 GET_USER_FUNC(GetAsyncKeyState);
78 GET_USER_FUNC(GetKeyNameText);
79 GET_USER_FUNC(GetKeyboardLayout);
80 GET_USER_FUNC(GetKeyboardLayoutName);
81 GET_USER_FUNC(LoadKeyboardLayout);
82 GET_USER_FUNC(MapVirtualKeyEx);
83 GET_USER_FUNC(RegisterHotKey);
84 GET_USER_FUNC(ToUnicodeEx);
85 GET_USER_FUNC(UnloadKeyboardLayout);
86 GET_USER_FUNC(UnregisterHotKey);
87 GET_USER_FUNC(VkKeyScanEx);
88 GET_USER_FUNC(CreateCursorIcon);
89 GET_USER_FUNC(DestroyCursorIcon);
90 GET_USER_FUNC(SetCursor);
91 GET_USER_FUNC(GetCursorPos);
92 GET_USER_FUNC(SetCursorPos);
93 GET_USER_FUNC(ClipCursor);
94 GET_USER_FUNC(GetScreenSaveActive);
95 GET_USER_FUNC(SetScreenSaveActive);
96 GET_USER_FUNC(AcquireClipboard);
97 GET_USER_FUNC(EmptyClipboard);
98 GET_USER_FUNC(SetClipboardData);
99 GET_USER_FUNC(GetClipboardData);
100 GET_USER_FUNC(CountClipboardFormats);
101 GET_USER_FUNC(EnumClipboardFormats);
102 GET_USER_FUNC(IsClipboardFormatAvailable);
103 GET_USER_FUNC(EndClipboardUpdate);
104 GET_USER_FUNC(ChangeDisplaySettingsEx);
105 GET_USER_FUNC(EnumDisplayMonitors);
106 GET_USER_FUNC(EnumDisplaySettingsEx);
107 GET_USER_FUNC(GetMonitorInfo);
108 GET_USER_FUNC(CreateDesktopWindow);
109 GET_USER_FUNC(CreateWindow);
110 GET_USER_FUNC(DestroyWindow);
111 GET_USER_FUNC(GetDC);
112 GET_USER_FUNC(MsgWaitForMultipleObjectsEx);
113 GET_USER_FUNC(ReleaseDC);
114 GET_USER_FUNC(ScrollDC);
115 GET_USER_FUNC(SetCapture);
116 GET_USER_FUNC(SetFocus);
117 GET_USER_FUNC(SetLayeredWindowAttributes);
118 GET_USER_FUNC(SetParent);
119 GET_USER_FUNC(SetWindowRgn);
120 GET_USER_FUNC(SetWindowIcon);
121 GET_USER_FUNC(SetWindowStyle);
122 GET_USER_FUNC(SetWindowText);
123 GET_USER_FUNC(ShowWindow);
124 GET_USER_FUNC(SysCommand);
125 GET_USER_FUNC(WindowMessage);
126 GET_USER_FUNC(WindowPosChanging);
127 GET_USER_FUNC(WindowPosChanged);
128 #undef GET_USER_FUNC
131 prev = InterlockedCompareExchangePointer( (void **)&USER_Driver, driver, &lazy_load_driver );
132 if (prev != &lazy_load_driver)
134 /* another thread beat us to it */
135 HeapFree( GetProcessHeap(), 0, driver );
136 FreeLibrary( graphics_driver );
137 driver = prev;
139 return driver;
142 /* unload the graphics driver on process exit */
143 void USER_unload_driver(void)
145 USER_DRIVER *prev;
146 /* make sure we don't try to call the driver after it has been detached */
147 prev = InterlockedExchangePointer( (void **)&USER_Driver, &null_driver );
148 if (prev != &lazy_load_driver && prev != &null_driver)
149 HeapFree( GetProcessHeap(), 0, prev );
153 /**********************************************************************
154 * Null user driver
156 * These are fallbacks for entry points that are not implemented in the real driver.
159 static HKL CDECL nulldrv_ActivateKeyboardLayout( HKL layout, UINT flags )
161 return 0;
164 static void CDECL nulldrv_Beep(void)
168 static SHORT CDECL nulldrv_GetAsyncKeyState( INT key )
170 return -1;
173 static INT CDECL nulldrv_GetKeyNameText( LONG lparam, LPWSTR buffer, INT size )
175 return 0;
178 static HKL CDECL nulldrv_GetKeyboardLayout( DWORD thread_id )
180 return 0;
183 static BOOL CDECL nulldrv_GetKeyboardLayoutName( LPWSTR name )
185 return FALSE;
188 static HKL CDECL nulldrv_LoadKeyboardLayout( LPCWSTR name, UINT flags )
190 return 0;
193 static UINT CDECL nulldrv_MapVirtualKeyEx( UINT code, UINT type, HKL layout )
195 return 0;
198 static BOOL CDECL nulldrv_RegisterHotKey( HWND hwnd, UINT modifiers, UINT vk )
200 return TRUE;
203 static INT CDECL nulldrv_ToUnicodeEx( UINT virt, UINT scan, const BYTE *state, LPWSTR str,
204 int size, UINT flags, HKL layout )
206 return 0;
209 static BOOL CDECL nulldrv_UnloadKeyboardLayout( HKL layout )
211 return 0;
214 static void CDECL nulldrv_UnregisterHotKey( HWND hwnd, UINT modifiers, UINT vk )
218 static SHORT CDECL nulldrv_VkKeyScanEx( WCHAR ch, HKL layout )
220 return -1;
223 static void CDECL nulldrv_CreateCursorIcon( HCURSOR cursor )
227 static void CDECL nulldrv_DestroyCursorIcon( HCURSOR cursor )
231 static void CDECL nulldrv_SetCursor( HCURSOR cursor )
235 static BOOL CDECL nulldrv_GetCursorPos( LPPOINT pt )
237 return FALSE;
240 static BOOL CDECL nulldrv_SetCursorPos( INT x, INT y )
242 return FALSE;
245 static BOOL CDECL nulldrv_ClipCursor( LPCRECT clip )
247 return FALSE;
250 static BOOL CDECL nulldrv_GetScreenSaveActive(void)
252 return FALSE;
255 static void CDECL nulldrv_SetScreenSaveActive( BOOL on )
259 static INT CDECL nulldrv_AcquireClipboard( HWND hwnd )
261 return 0;
264 static BOOL CDECL nulldrv_CountClipboardFormats(void)
266 return 0;
269 static void CDECL nulldrv_EmptyClipboard( BOOL keepunowned )
273 static void CDECL nulldrv_EndClipboardUpdate(void)
277 static UINT CDECL nulldrv_EnumClipboardFormats( UINT format )
279 return 0;
282 static HANDLE CDECL nulldrv_GetClipboardData( UINT format )
284 return 0;
287 static BOOL CDECL nulldrv_IsClipboardFormatAvailable( UINT format )
289 return FALSE;
292 static BOOL CDECL nulldrv_SetClipboardData( UINT format, HANDLE handle, BOOL owner )
294 return FALSE;
297 static LONG CDECL nulldrv_ChangeDisplaySettingsEx( LPCWSTR name, LPDEVMODEW mode, HWND hwnd,
298 DWORD flags, LPVOID lparam )
300 return DISP_CHANGE_FAILED;
303 static BOOL CDECL nulldrv_EnumDisplayMonitors( HDC hdc, LPRECT rect, MONITORENUMPROC proc, LPARAM lp )
305 return FALSE;
308 static BOOL CDECL nulldrv_EnumDisplaySettingsEx( LPCWSTR name, DWORD num, LPDEVMODEW mode, DWORD flags )
310 return FALSE;
313 static BOOL CDECL nulldrv_GetMonitorInfo( HMONITOR handle, LPMONITORINFO info )
315 return FALSE;
318 static BOOL CDECL nulldrv_CreateDesktopWindow( HWND hwnd )
320 return TRUE;
323 static BOOL CDECL nulldrv_CreateWindow( HWND hwnd )
325 static int warned;
327 /* HWND_MESSAGE windows don't need a graphics driver */
328 if (GetAncestor( hwnd, GA_PARENT ) == get_user_thread_info()->msg_window) return TRUE;
329 if (warned++) return FALSE;
331 MESSAGE( "Application tried to create a window, but no driver could be loaded.\n");
332 switch (driver_load_error)
334 case ERROR_MOD_NOT_FOUND:
335 MESSAGE( "The X11 driver is missing. Check your build!\n" );
336 break;
337 case ERROR_DLL_INIT_FAILED:
338 MESSAGE( "Make sure that your X server is running and that $DISPLAY is set correctly.\n" );
339 break;
340 default:
341 MESSAGE( "Unknown error (%d).\n", driver_load_error );
344 return FALSE;
347 static void CDECL nulldrv_DestroyWindow( HWND hwnd )
351 static void CDECL nulldrv_GetDC( HDC hdc, HWND hwnd, HWND top_win, const RECT *win_rect,
352 const RECT *top_rect, DWORD flags )
356 static DWORD CDECL nulldrv_MsgWaitForMultipleObjectsEx( DWORD count, const HANDLE *handles, DWORD timeout,
357 DWORD mask, DWORD flags )
359 return WaitForMultipleObjectsEx( count, handles, flags & MWMO_WAITALL,
360 timeout, flags & MWMO_ALERTABLE );
363 static void CDECL nulldrv_ReleaseDC( HWND hwnd, HDC hdc )
367 static BOOL CDECL nulldrv_ScrollDC( HDC hdc, INT dx, INT dy, const RECT *scroll, const RECT *clip,
368 HRGN hrgn, LPRECT update )
370 return FALSE;
373 static void CDECL nulldrv_SetCapture( HWND hwnd, UINT flags )
377 static void CDECL nulldrv_SetFocus( HWND hwnd )
381 static void CDECL nulldrv_SetLayeredWindowAttributes( HWND hwnd, COLORREF key, BYTE alpha, DWORD flags )
385 static void CDECL nulldrv_SetParent( HWND hwnd, HWND parent, HWND old_parent )
389 static int CDECL nulldrv_SetWindowRgn( HWND hwnd, HRGN hrgn, BOOL redraw )
391 return 1;
394 static void CDECL nulldrv_SetWindowIcon( HWND hwnd, UINT type, HICON icon )
398 static void CDECL nulldrv_SetWindowStyle( HWND hwnd, INT offset, STYLESTRUCT *style )
402 static void CDECL nulldrv_SetWindowText( HWND hwnd, LPCWSTR text )
406 static UINT CDECL nulldrv_ShowWindow( HWND hwnd, INT cmd, RECT *rect, UINT swp )
408 return swp;
411 static LRESULT CDECL nulldrv_SysCommand( HWND hwnd, WPARAM wparam, LPARAM lparam )
413 return -1;
416 static LRESULT CDECL nulldrv_WindowMessage( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
418 return 0;
421 static void CDECL nulldrv_WindowPosChanging( HWND hwnd, HWND insert_after, UINT swp_flags,
422 const RECT *window_rect, const RECT *client_rect,
423 RECT *visible_rect )
427 static void CDECL nulldrv_WindowPosChanged( HWND hwnd, HWND insert_after, UINT swp_flags,
428 const RECT *window_rect, const RECT *client_rect,
429 const RECT *visible_rect, const RECT *valid_rects )
433 static USER_DRIVER null_driver =
435 /* keyboard functions */
436 nulldrv_ActivateKeyboardLayout,
437 nulldrv_Beep,
438 nulldrv_GetAsyncKeyState,
439 nulldrv_GetKeyNameText,
440 nulldrv_GetKeyboardLayout,
441 nulldrv_GetKeyboardLayoutName,
442 nulldrv_LoadKeyboardLayout,
443 nulldrv_MapVirtualKeyEx,
444 nulldrv_RegisterHotKey,
445 nulldrv_ToUnicodeEx,
446 nulldrv_UnloadKeyboardLayout,
447 nulldrv_UnregisterHotKey,
448 nulldrv_VkKeyScanEx,
449 /* cursor/icon functions */
450 nulldrv_CreateCursorIcon,
451 nulldrv_DestroyCursorIcon,
452 nulldrv_SetCursor,
453 nulldrv_GetCursorPos,
454 nulldrv_SetCursorPos,
455 nulldrv_ClipCursor,
456 /* screen saver functions */
457 nulldrv_GetScreenSaveActive,
458 nulldrv_SetScreenSaveActive,
459 /* clipboard functions */
460 nulldrv_AcquireClipboard,
461 nulldrv_CountClipboardFormats,
462 nulldrv_EmptyClipboard,
463 nulldrv_EndClipboardUpdate,
464 nulldrv_EnumClipboardFormats,
465 nulldrv_GetClipboardData,
466 nulldrv_IsClipboardFormatAvailable,
467 nulldrv_SetClipboardData,
468 /* display modes */
469 nulldrv_ChangeDisplaySettingsEx,
470 nulldrv_EnumDisplayMonitors,
471 nulldrv_EnumDisplaySettingsEx,
472 nulldrv_GetMonitorInfo,
473 /* windowing functions */
474 nulldrv_CreateDesktopWindow,
475 nulldrv_CreateWindow,
476 nulldrv_DestroyWindow,
477 nulldrv_GetDC,
478 nulldrv_MsgWaitForMultipleObjectsEx,
479 nulldrv_ReleaseDC,
480 nulldrv_ScrollDC,
481 nulldrv_SetCapture,
482 nulldrv_SetFocus,
483 nulldrv_SetLayeredWindowAttributes,
484 nulldrv_SetParent,
485 nulldrv_SetWindowRgn,
486 nulldrv_SetWindowIcon,
487 nulldrv_SetWindowStyle,
488 nulldrv_SetWindowText,
489 nulldrv_ShowWindow,
490 nulldrv_SysCommand,
491 nulldrv_WindowMessage,
492 nulldrv_WindowPosChanging,
493 nulldrv_WindowPosChanged
497 /**********************************************************************
498 * Lazy loading user driver
500 * Initial driver used before another driver is loaded.
501 * Each entry point simply loads the real driver and chains to it.
504 static HKL CDECL loaderdrv_ActivateKeyboardLayout( HKL layout, UINT flags )
506 return load_driver()->pActivateKeyboardLayout( layout, flags );
509 static void CDECL loaderdrv_Beep(void)
511 load_driver()->pBeep();
514 static SHORT CDECL loaderdrv_GetAsyncKeyState( INT key )
516 return load_driver()->pGetAsyncKeyState( key );
519 static INT CDECL loaderdrv_GetKeyNameText( LONG lparam, LPWSTR buffer, INT size )
521 return load_driver()->pGetKeyNameText( lparam, buffer, size );
524 static HKL CDECL loaderdrv_GetKeyboardLayout( DWORD thread_id )
526 return load_driver()->pGetKeyboardLayout( thread_id );
529 static BOOL CDECL loaderdrv_GetKeyboardLayoutName( LPWSTR name )
531 return load_driver()->pGetKeyboardLayoutName( name );
534 static HKL CDECL loaderdrv_LoadKeyboardLayout( LPCWSTR name, UINT flags )
536 return load_driver()->pLoadKeyboardLayout( name, flags );
539 static UINT CDECL loaderdrv_MapVirtualKeyEx( UINT code, UINT type, HKL layout )
541 return load_driver()->pMapVirtualKeyEx( code, type, layout );
544 static BOOL CDECL loaderdrv_RegisterHotKey( HWND hwnd, UINT modifiers, UINT vk )
546 return load_driver()->pRegisterHotKey( hwnd, modifiers, vk );
549 static INT CDECL loaderdrv_ToUnicodeEx( UINT virt, UINT scan, const BYTE *state, LPWSTR str,
550 int size, UINT flags, HKL layout )
552 return load_driver()->pToUnicodeEx( virt, scan, state, str, size, flags, layout );
555 static BOOL CDECL loaderdrv_UnloadKeyboardLayout( HKL layout )
557 return load_driver()->pUnloadKeyboardLayout( layout );
560 static void CDECL loaderdrv_UnregisterHotKey( HWND hwnd, UINT modifiers, UINT vk )
562 load_driver()->pUnregisterHotKey( hwnd, modifiers, vk );
565 static SHORT CDECL loaderdrv_VkKeyScanEx( WCHAR ch, HKL layout )
567 return load_driver()->pVkKeyScanEx( ch, layout );
570 static void CDECL loaderdrv_CreateCursorIcon( HCURSOR cursor )
572 load_driver()->pCreateCursorIcon( cursor );
575 static void CDECL loaderdrv_DestroyCursorIcon( HCURSOR cursor )
577 load_driver()->pDestroyCursorIcon( cursor );
580 static void CDECL loaderdrv_SetCursor( HCURSOR cursor )
582 load_driver()->pSetCursor( cursor );
585 static BOOL CDECL loaderdrv_GetCursorPos( LPPOINT pt )
587 return load_driver()->pGetCursorPos( pt );
590 static BOOL CDECL loaderdrv_SetCursorPos( INT x, INT y )
592 return load_driver()->pSetCursorPos( x, y );
595 static BOOL CDECL loaderdrv_ClipCursor( LPCRECT clip )
597 return load_driver()->pClipCursor( clip );
600 static BOOL CDECL loaderdrv_GetScreenSaveActive(void)
602 return load_driver()->pGetScreenSaveActive();
605 static void CDECL loaderdrv_SetScreenSaveActive( BOOL on )
607 load_driver()->pSetScreenSaveActive( on );
610 static INT CDECL loaderdrv_AcquireClipboard( HWND hwnd )
612 return load_driver()->pAcquireClipboard( hwnd );
615 static BOOL CDECL loaderdrv_CountClipboardFormats(void)
617 return load_driver()->pCountClipboardFormats();
620 static void CDECL loaderdrv_EmptyClipboard( BOOL keepunowned )
622 load_driver()->pEmptyClipboard( keepunowned );
625 static void CDECL loaderdrv_EndClipboardUpdate(void)
627 load_driver()->pEndClipboardUpdate();
630 static UINT CDECL loaderdrv_EnumClipboardFormats( UINT format )
632 return load_driver()->pEnumClipboardFormats( format );
635 static HANDLE CDECL loaderdrv_GetClipboardData( UINT format )
637 return load_driver()->pGetClipboardData( format );
640 static BOOL CDECL loaderdrv_IsClipboardFormatAvailable( UINT format )
642 return load_driver()->pIsClipboardFormatAvailable( format );
645 static BOOL CDECL loaderdrv_SetClipboardData( UINT format, HANDLE handle, BOOL owner )
647 return load_driver()->pSetClipboardData( format, handle, owner );
650 static LONG CDECL loaderdrv_ChangeDisplaySettingsEx( LPCWSTR name, LPDEVMODEW mode, HWND hwnd,
651 DWORD flags, LPVOID lparam )
653 return load_driver()->pChangeDisplaySettingsEx( name, mode, hwnd, flags, lparam );
656 static BOOL CDECL loaderdrv_EnumDisplayMonitors( HDC hdc, LPRECT rect, MONITORENUMPROC proc, LPARAM lp )
658 return load_driver()->pEnumDisplayMonitors( hdc, rect, proc, lp );
661 static BOOL CDECL loaderdrv_EnumDisplaySettingsEx( LPCWSTR name, DWORD num, LPDEVMODEW mode, DWORD flags )
663 return load_driver()->pEnumDisplaySettingsEx( name, num, mode, flags );
666 static BOOL CDECL loaderdrv_GetMonitorInfo( HMONITOR handle, LPMONITORINFO info )
668 return load_driver()->pGetMonitorInfo( handle, info );
671 static BOOL CDECL loaderdrv_CreateDesktopWindow( HWND hwnd )
673 return load_driver()->pCreateDesktopWindow( hwnd );
676 static BOOL CDECL loaderdrv_CreateWindow( HWND hwnd )
678 return load_driver()->pCreateWindow( hwnd );
681 static void CDECL loaderdrv_DestroyWindow( HWND hwnd )
683 load_driver()->pDestroyWindow( hwnd );
686 static void CDECL loaderdrv_GetDC( HDC hdc, HWND hwnd, HWND top_win, const RECT *win_rect,
687 const RECT *top_rect, DWORD flags )
689 load_driver()->pGetDC( hdc, hwnd, top_win, win_rect, top_rect, flags );
692 static DWORD CDECL loaderdrv_MsgWaitForMultipleObjectsEx( DWORD count, const HANDLE *handles, DWORD timeout,
693 DWORD mask, DWORD flags )
695 return load_driver()->pMsgWaitForMultipleObjectsEx( count, handles, timeout, mask, flags );
698 static void CDECL loaderdrv_ReleaseDC( HWND hwnd, HDC hdc )
700 load_driver()->pReleaseDC( hwnd, hdc );
703 static BOOL CDECL loaderdrv_ScrollDC( HDC hdc, INT dx, INT dy, const RECT *scroll, const RECT *clip,
704 HRGN hrgn, LPRECT update )
706 return load_driver()->pScrollDC( hdc, dx, dy, scroll, clip, hrgn, update );
709 static void CDECL loaderdrv_SetCapture( HWND hwnd, UINT flags )
711 load_driver()->pSetCapture( hwnd, flags );
714 static void CDECL loaderdrv_SetFocus( HWND hwnd )
716 load_driver()->pSetFocus( hwnd );
719 static void CDECL loaderdrv_SetLayeredWindowAttributes( HWND hwnd, COLORREF key, BYTE alpha, DWORD flags )
721 load_driver()->pSetLayeredWindowAttributes( hwnd, key, alpha, flags );
724 static void CDECL loaderdrv_SetParent( HWND hwnd, HWND parent, HWND old_parent )
726 load_driver()->pSetParent( hwnd, parent, old_parent );
729 static int CDECL loaderdrv_SetWindowRgn( HWND hwnd, HRGN hrgn, BOOL redraw )
731 return load_driver()->pSetWindowRgn( hwnd, hrgn, redraw );
734 static void CDECL loaderdrv_SetWindowIcon( HWND hwnd, UINT type, HICON icon )
736 load_driver()->pSetWindowIcon( hwnd, type, icon );
739 static void CDECL loaderdrv_SetWindowStyle( HWND hwnd, INT offset, STYLESTRUCT *style )
741 load_driver()->pSetWindowStyle( hwnd, offset, style );
744 static void CDECL loaderdrv_SetWindowText( HWND hwnd, LPCWSTR text )
746 load_driver()->pSetWindowText( hwnd, text );
749 static UINT CDECL loaderdrv_ShowWindow( HWND hwnd, INT cmd, RECT *rect, UINT swp )
751 return load_driver()->pShowWindow( hwnd, cmd, rect, swp );
754 static LRESULT CDECL loaderdrv_SysCommand( HWND hwnd, WPARAM wparam, LPARAM lparam )
756 return load_driver()->pSysCommand( hwnd, wparam, lparam );
759 static LRESULT CDECL loaderdrv_WindowMessage( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
761 return load_driver()->pWindowMessage( hwnd, msg, wparam, lparam );
764 static void CDECL loaderdrv_WindowPosChanging( HWND hwnd, HWND insert_after, UINT swp_flags,
765 const RECT *window_rect, const RECT *client_rect,
766 RECT *visible_rect )
768 load_driver()->pWindowPosChanging( hwnd, insert_after, swp_flags,
769 window_rect, client_rect, visible_rect );
772 static void CDECL loaderdrv_WindowPosChanged( HWND hwnd, HWND insert_after, UINT swp_flags,
773 const RECT *window_rect, const RECT *client_rect,
774 const RECT *visible_rect, const RECT *valid_rects )
776 load_driver()->pWindowPosChanged( hwnd, insert_after, swp_flags, window_rect,
777 client_rect, visible_rect, valid_rects );
780 static USER_DRIVER lazy_load_driver =
782 /* keyboard functions */
783 loaderdrv_ActivateKeyboardLayout,
784 loaderdrv_Beep,
785 loaderdrv_GetAsyncKeyState,
786 loaderdrv_GetKeyNameText,
787 loaderdrv_GetKeyboardLayout,
788 loaderdrv_GetKeyboardLayoutName,
789 loaderdrv_LoadKeyboardLayout,
790 loaderdrv_MapVirtualKeyEx,
791 loaderdrv_RegisterHotKey,
792 loaderdrv_ToUnicodeEx,
793 loaderdrv_UnloadKeyboardLayout,
794 loaderdrv_UnregisterHotKey,
795 loaderdrv_VkKeyScanEx,
796 /* cursor/icon functions */
797 loaderdrv_CreateCursorIcon,
798 loaderdrv_DestroyCursorIcon,
799 loaderdrv_SetCursor,
800 loaderdrv_GetCursorPos,
801 loaderdrv_SetCursorPos,
802 loaderdrv_ClipCursor,
803 /* screen saver functions */
804 loaderdrv_GetScreenSaveActive,
805 loaderdrv_SetScreenSaveActive,
806 /* clipboard functions */
807 loaderdrv_AcquireClipboard,
808 loaderdrv_CountClipboardFormats,
809 loaderdrv_EmptyClipboard,
810 loaderdrv_EndClipboardUpdate,
811 loaderdrv_EnumClipboardFormats,
812 loaderdrv_GetClipboardData,
813 loaderdrv_IsClipboardFormatAvailable,
814 loaderdrv_SetClipboardData,
815 /* display modes */
816 loaderdrv_ChangeDisplaySettingsEx,
817 loaderdrv_EnumDisplayMonitors,
818 loaderdrv_EnumDisplaySettingsEx,
819 loaderdrv_GetMonitorInfo,
820 /* windowing functions */
821 loaderdrv_CreateDesktopWindow,
822 loaderdrv_CreateWindow,
823 loaderdrv_DestroyWindow,
824 loaderdrv_GetDC,
825 loaderdrv_MsgWaitForMultipleObjectsEx,
826 loaderdrv_ReleaseDC,
827 loaderdrv_ScrollDC,
828 loaderdrv_SetCapture,
829 loaderdrv_SetFocus,
830 loaderdrv_SetLayeredWindowAttributes,
831 loaderdrv_SetParent,
832 loaderdrv_SetWindowRgn,
833 loaderdrv_SetWindowIcon,
834 loaderdrv_SetWindowStyle,
835 loaderdrv_SetWindowText,
836 loaderdrv_ShowWindow,
837 loaderdrv_SysCommand,
838 loaderdrv_WindowMessage,
839 loaderdrv_WindowPosChanging,
840 loaderdrv_WindowPosChanged