wineboot: Update Portuguese (Brazilian) translation.
[wine/multimedia.git] / dlls / user32 / driver.c
blobf2f9892687c6d4b6b62e6d8e40f3b3d600853ce5
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(SendInput);
84 GET_USER_FUNC(ToUnicodeEx);
85 GET_USER_FUNC(UnloadKeyboardLayout);
86 GET_USER_FUNC(VkKeyScanEx);
87 GET_USER_FUNC(CreateCursorIcon);
88 GET_USER_FUNC(DestroyCursorIcon);
89 GET_USER_FUNC(SetCursor);
90 GET_USER_FUNC(GetCursorPos);
91 GET_USER_FUNC(SetCursorPos);
92 GET_USER_FUNC(ClipCursor);
93 GET_USER_FUNC(GetScreenSaveActive);
94 GET_USER_FUNC(SetScreenSaveActive);
95 GET_USER_FUNC(AcquireClipboard);
96 GET_USER_FUNC(EmptyClipboard);
97 GET_USER_FUNC(SetClipboardData);
98 GET_USER_FUNC(GetClipboardData);
99 GET_USER_FUNC(CountClipboardFormats);
100 GET_USER_FUNC(EnumClipboardFormats);
101 GET_USER_FUNC(IsClipboardFormatAvailable);
102 GET_USER_FUNC(RegisterClipboardFormat);
103 GET_USER_FUNC(GetClipboardFormatName);
104 GET_USER_FUNC(EndClipboardUpdate);
105 GET_USER_FUNC(ChangeDisplaySettingsEx);
106 GET_USER_FUNC(EnumDisplayMonitors);
107 GET_USER_FUNC(EnumDisplaySettingsEx);
108 GET_USER_FUNC(GetMonitorInfo);
109 GET_USER_FUNC(CreateDesktopWindow);
110 GET_USER_FUNC(CreateWindow);
111 GET_USER_FUNC(DestroyWindow);
112 GET_USER_FUNC(GetDC);
113 GET_USER_FUNC(MsgWaitForMultipleObjectsEx);
114 GET_USER_FUNC(ReleaseDC);
115 GET_USER_FUNC(ScrollDC);
116 GET_USER_FUNC(SetCapture);
117 GET_USER_FUNC(SetFocus);
118 GET_USER_FUNC(SetLayeredWindowAttributes);
119 GET_USER_FUNC(SetParent);
120 GET_USER_FUNC(SetWindowRgn);
121 GET_USER_FUNC(SetWindowIcon);
122 GET_USER_FUNC(SetWindowStyle);
123 GET_USER_FUNC(SetWindowText);
124 GET_USER_FUNC(ShowWindow);
125 GET_USER_FUNC(SysCommand);
126 GET_USER_FUNC(WindowMessage);
127 GET_USER_FUNC(WindowPosChanging);
128 GET_USER_FUNC(WindowPosChanged);
129 #undef GET_USER_FUNC
132 prev = InterlockedCompareExchangePointer( (void **)&USER_Driver, driver, &lazy_load_driver );
133 if (prev != &lazy_load_driver)
135 /* another thread beat us to it */
136 HeapFree( GetProcessHeap(), 0, driver );
137 FreeLibrary( graphics_driver );
138 driver = prev;
140 return driver;
143 /* unload the graphics driver on process exit */
144 void USER_unload_driver(void)
146 USER_DRIVER *prev;
147 /* make sure we don't try to call the driver after it has been detached */
148 prev = InterlockedExchangePointer( (void **)&USER_Driver, &null_driver );
149 if (prev != &lazy_load_driver && prev != &null_driver)
150 HeapFree( GetProcessHeap(), 0, prev );
154 /**********************************************************************
155 * Null user driver
157 * These are fallbacks for entry points that are not implemented in the real driver.
160 static HKL CDECL nulldrv_ActivateKeyboardLayout( HKL layout, UINT flags )
162 return 0;
165 static void CDECL nulldrv_Beep(void)
169 static SHORT CDECL nulldrv_GetAsyncKeyState( INT key )
171 return 0;
174 static INT CDECL nulldrv_GetKeyNameText( LONG lparam, LPWSTR buffer, INT size )
176 return 0;
179 static HKL CDECL nulldrv_GetKeyboardLayout( DWORD layout )
181 return 0;
184 static BOOL CDECL nulldrv_GetKeyboardLayoutName( LPWSTR name )
186 return FALSE;
189 static HKL CDECL nulldrv_LoadKeyboardLayout( LPCWSTR name, UINT flags )
191 return 0;
194 static UINT CDECL nulldrv_MapVirtualKeyEx( UINT code, UINT type, HKL layout )
196 return 0;
199 static UINT CDECL nulldrv_SendInput( UINT count, LPINPUT inputs, int size )
201 return 0;
204 static INT CDECL nulldrv_ToUnicodeEx( UINT virt, UINT scan, const BYTE *state, LPWSTR str,
205 int size, UINT flags, HKL layout )
207 return 0;
210 static BOOL CDECL nulldrv_UnloadKeyboardLayout( HKL layout )
212 return 0;
215 static SHORT CDECL nulldrv_VkKeyScanEx( WCHAR ch, HKL layout )
217 return -1;
220 static void CDECL nulldrv_CreateCursorIcon( HCURSOR cursor )
224 static void CDECL nulldrv_DestroyCursorIcon( HCURSOR cursor )
228 static void CDECL nulldrv_SetCursor( HCURSOR cursor )
232 static BOOL CDECL nulldrv_GetCursorPos( LPPOINT pt )
234 return FALSE;
237 static BOOL CDECL nulldrv_SetCursorPos( INT x, INT y )
239 return FALSE;
242 static BOOL CDECL nulldrv_ClipCursor( LPCRECT clip )
244 return FALSE;
247 static BOOL CDECL nulldrv_GetScreenSaveActive(void)
249 return FALSE;
252 static void CDECL nulldrv_SetScreenSaveActive( BOOL on )
256 static INT CDECL nulldrv_AcquireClipboard( HWND hwnd )
258 return 0;
261 static BOOL CDECL nulldrv_CountClipboardFormats(void)
263 return 0;
266 static void CDECL nulldrv_EmptyClipboard( BOOL keepunowned )
270 static void CDECL nulldrv_EndClipboardUpdate(void)
274 static UINT CDECL nulldrv_EnumClipboardFormats( UINT format )
276 return 0;
279 static HANDLE CDECL nulldrv_GetClipboardData( UINT format )
281 return 0;
284 static INT CDECL nulldrv_GetClipboardFormatName( UINT format, LPWSTR buffer, UINT len )
286 return FALSE;
289 static BOOL CDECL nulldrv_IsClipboardFormatAvailable( UINT format )
291 return FALSE;
294 static UINT CDECL nulldrv_RegisterClipboardFormat( LPCWSTR name )
296 return 0;
299 static BOOL CDECL nulldrv_SetClipboardData( UINT format, HANDLE handle, BOOL owner )
301 return FALSE;
304 static LONG CDECL nulldrv_ChangeDisplaySettingsEx( LPCWSTR name, LPDEVMODEW mode, HWND hwnd,
305 DWORD flags, LPVOID lparam )
307 return DISP_CHANGE_FAILED;
310 static BOOL CDECL nulldrv_EnumDisplayMonitors( HDC hdc, LPRECT rect, MONITORENUMPROC proc, LPARAM lp )
312 return FALSE;
315 static BOOL CDECL nulldrv_EnumDisplaySettingsEx( LPCWSTR name, DWORD num, LPDEVMODEW mode, DWORD flags )
317 return FALSE;
320 static BOOL CDECL nulldrv_GetMonitorInfo( HMONITOR handle, LPMONITORINFO info )
322 return FALSE;
325 static BOOL CDECL nulldrv_CreateDesktopWindow( HWND hwnd )
327 return TRUE;
330 static BOOL CDECL nulldrv_CreateWindow( HWND hwnd )
332 static int warned;
334 /* HWND_MESSAGE windows don't need a graphics driver */
335 if (GetAncestor( hwnd, GA_PARENT ) == get_user_thread_info()->msg_window) return TRUE;
336 if (warned++) return FALSE;
338 MESSAGE( "Application tried to create a window, but no driver could be loaded.\n");
339 switch (driver_load_error)
341 case ERROR_MOD_NOT_FOUND:
342 MESSAGE( "The X11 driver is missing. Check your build!\n" );
343 break;
344 case ERROR_DLL_INIT_FAILED:
345 MESSAGE( "Make sure that your X server is running and that $DISPLAY is set correctly.\n" );
346 break;
347 default:
348 MESSAGE( "Unknown error (%d).\n", driver_load_error );
351 return FALSE;
354 static void CDECL nulldrv_DestroyWindow( HWND hwnd )
358 static void CDECL nulldrv_GetDC( HDC hdc, HWND hwnd, HWND top_win, const RECT *win_rect,
359 const RECT *top_rect, DWORD flags )
363 static DWORD CDECL nulldrv_MsgWaitForMultipleObjectsEx( DWORD count, const HANDLE *handles, DWORD timeout,
364 DWORD mask, DWORD flags )
366 return WaitForMultipleObjectsEx( count, handles, flags & MWMO_WAITALL,
367 timeout, flags & MWMO_ALERTABLE );
370 static void CDECL nulldrv_ReleaseDC( HWND hwnd, HDC hdc )
374 static BOOL CDECL nulldrv_ScrollDC( HDC hdc, INT dx, INT dy, const RECT *scroll, const RECT *clip,
375 HRGN hrgn, LPRECT update )
377 return FALSE;
380 static void CDECL nulldrv_SetCapture( HWND hwnd, UINT flags )
384 static void CDECL nulldrv_SetFocus( HWND hwnd )
388 static void CDECL nulldrv_SetLayeredWindowAttributes( HWND hwnd, COLORREF key, BYTE alpha, DWORD flags )
392 static void CDECL nulldrv_SetParent( HWND hwnd, HWND parent, HWND old_parent )
396 static int CDECL nulldrv_SetWindowRgn( HWND hwnd, HRGN hrgn, BOOL redraw )
398 return 1;
401 static void CDECL nulldrv_SetWindowIcon( HWND hwnd, UINT type, HICON icon )
405 static void CDECL nulldrv_SetWindowStyle( HWND hwnd, INT offset, STYLESTRUCT *style )
409 static void CDECL nulldrv_SetWindowText( HWND hwnd, LPCWSTR text )
413 static UINT CDECL nulldrv_ShowWindow( HWND hwnd, INT cmd, RECT *rect, UINT swp )
415 return swp;
418 static LRESULT CDECL nulldrv_SysCommand( HWND hwnd, WPARAM wparam, LPARAM lparam )
420 return -1;
423 static LRESULT CDECL nulldrv_WindowMessage( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
425 return 0;
428 static void CDECL nulldrv_WindowPosChanging( HWND hwnd, HWND insert_after, UINT swp_flags,
429 const RECT *window_rect, const RECT *client_rect,
430 RECT *visible_rect )
434 static void CDECL nulldrv_WindowPosChanged( HWND hwnd, HWND insert_after, UINT swp_flags,
435 const RECT *window_rect, const RECT *client_rect,
436 const RECT *visible_rect, const RECT *valid_rects )
440 static USER_DRIVER null_driver =
442 /* keyboard functions */
443 nulldrv_ActivateKeyboardLayout,
444 nulldrv_Beep,
445 nulldrv_GetAsyncKeyState,
446 nulldrv_GetKeyNameText,
447 nulldrv_GetKeyboardLayout,
448 nulldrv_GetKeyboardLayoutName,
449 nulldrv_LoadKeyboardLayout,
450 nulldrv_MapVirtualKeyEx,
451 nulldrv_SendInput,
452 nulldrv_ToUnicodeEx,
453 nulldrv_UnloadKeyboardLayout,
454 nulldrv_VkKeyScanEx,
455 /* cursor/icon functions */
456 nulldrv_CreateCursorIcon,
457 nulldrv_DestroyCursorIcon,
458 nulldrv_SetCursor,
459 nulldrv_GetCursorPos,
460 nulldrv_SetCursorPos,
461 nulldrv_ClipCursor,
462 /* screen saver functions */
463 nulldrv_GetScreenSaveActive,
464 nulldrv_SetScreenSaveActive,
465 /* clipboard functions */
466 nulldrv_AcquireClipboard,
467 nulldrv_CountClipboardFormats,
468 nulldrv_EmptyClipboard,
469 nulldrv_EndClipboardUpdate,
470 nulldrv_EnumClipboardFormats,
471 nulldrv_GetClipboardData,
472 nulldrv_GetClipboardFormatName,
473 nulldrv_IsClipboardFormatAvailable,
474 nulldrv_RegisterClipboardFormat,
475 nulldrv_SetClipboardData,
476 /* display modes */
477 nulldrv_ChangeDisplaySettingsEx,
478 nulldrv_EnumDisplayMonitors,
479 nulldrv_EnumDisplaySettingsEx,
480 nulldrv_GetMonitorInfo,
481 /* windowing functions */
482 nulldrv_CreateDesktopWindow,
483 nulldrv_CreateWindow,
484 nulldrv_DestroyWindow,
485 nulldrv_GetDC,
486 nulldrv_MsgWaitForMultipleObjectsEx,
487 nulldrv_ReleaseDC,
488 nulldrv_ScrollDC,
489 nulldrv_SetCapture,
490 nulldrv_SetFocus,
491 nulldrv_SetLayeredWindowAttributes,
492 nulldrv_SetParent,
493 nulldrv_SetWindowRgn,
494 nulldrv_SetWindowIcon,
495 nulldrv_SetWindowStyle,
496 nulldrv_SetWindowText,
497 nulldrv_ShowWindow,
498 nulldrv_SysCommand,
499 nulldrv_WindowMessage,
500 nulldrv_WindowPosChanging,
501 nulldrv_WindowPosChanged
505 /**********************************************************************
506 * Lazy loading user driver
508 * Initial driver used before another driver is loaded.
509 * Each entry point simply loads the real driver and chains to it.
512 static HKL CDECL loaderdrv_ActivateKeyboardLayout( HKL layout, UINT flags )
514 return load_driver()->pActivateKeyboardLayout( layout, flags );
517 static void CDECL loaderdrv_Beep(void)
519 load_driver()->pBeep();
522 static SHORT CDECL loaderdrv_GetAsyncKeyState( INT key )
524 return load_driver()->pGetAsyncKeyState( key );
527 static INT CDECL loaderdrv_GetKeyNameText( LONG lparam, LPWSTR buffer, INT size )
529 return load_driver()->pGetKeyNameText( lparam, buffer, size );
532 static HKL CDECL loaderdrv_GetKeyboardLayout( DWORD layout )
534 return load_driver()->pGetKeyboardLayout( layout );
537 static BOOL CDECL loaderdrv_GetKeyboardLayoutName( LPWSTR name )
539 return load_driver()->pGetKeyboardLayoutName( name );
542 static HKL CDECL loaderdrv_LoadKeyboardLayout( LPCWSTR name, UINT flags )
544 return load_driver()->pLoadKeyboardLayout( name, flags );
547 static UINT CDECL loaderdrv_MapVirtualKeyEx( UINT code, UINT type, HKL layout )
549 return load_driver()->pMapVirtualKeyEx( code, type, layout );
552 static UINT CDECL loaderdrv_SendInput( UINT count, LPINPUT inputs, int size )
554 return load_driver()->pSendInput( count, inputs, size );
557 static INT CDECL loaderdrv_ToUnicodeEx( UINT virt, UINT scan, const BYTE *state, LPWSTR str,
558 int size, UINT flags, HKL layout )
560 return load_driver()->pToUnicodeEx( virt, scan, state, str, size, flags, layout );
563 static BOOL CDECL loaderdrv_UnloadKeyboardLayout( HKL layout )
565 return load_driver()->pUnloadKeyboardLayout( layout );
568 static SHORT CDECL loaderdrv_VkKeyScanEx( WCHAR ch, HKL layout )
570 return load_driver()->pVkKeyScanEx( ch, layout );
573 static void CDECL loaderdrv_CreateCursorIcon( HCURSOR cursor )
575 load_driver()->pCreateCursorIcon( cursor );
578 static void CDECL loaderdrv_DestroyCursorIcon( HCURSOR cursor )
580 load_driver()->pDestroyCursorIcon( cursor );
583 static void CDECL loaderdrv_SetCursor( HCURSOR cursor )
585 load_driver()->pSetCursor( cursor );
588 static BOOL CDECL loaderdrv_GetCursorPos( LPPOINT pt )
590 return load_driver()->pGetCursorPos( pt );
593 static BOOL CDECL loaderdrv_SetCursorPos( INT x, INT y )
595 return load_driver()->pSetCursorPos( x, y );
598 static BOOL CDECL loaderdrv_ClipCursor( LPCRECT clip )
600 return load_driver()->pClipCursor( clip );
603 static BOOL CDECL loaderdrv_GetScreenSaveActive(void)
605 return load_driver()->pGetScreenSaveActive();
608 static void CDECL loaderdrv_SetScreenSaveActive( BOOL on )
610 load_driver()->pSetScreenSaveActive( on );
613 static INT CDECL loaderdrv_AcquireClipboard( HWND hwnd )
615 return load_driver()->pAcquireClipboard( hwnd );
618 static BOOL CDECL loaderdrv_CountClipboardFormats(void)
620 return load_driver()->pCountClipboardFormats();
623 static void CDECL loaderdrv_EmptyClipboard( BOOL keepunowned )
625 load_driver()->pEmptyClipboard( keepunowned );
628 static void CDECL loaderdrv_EndClipboardUpdate(void)
630 load_driver()->pEndClipboardUpdate();
633 static UINT CDECL loaderdrv_EnumClipboardFormats( UINT format )
635 return load_driver()->pEnumClipboardFormats( format );
638 static HANDLE CDECL loaderdrv_GetClipboardData( UINT format )
640 return load_driver()->pGetClipboardData( format );
643 static INT CDECL loaderdrv_GetClipboardFormatName( UINT format, LPWSTR buffer, UINT len )
645 return load_driver()->pGetClipboardFormatName( format, buffer, len );
648 static BOOL CDECL loaderdrv_IsClipboardFormatAvailable( UINT format )
650 return load_driver()->pIsClipboardFormatAvailable( format );
653 static UINT CDECL loaderdrv_RegisterClipboardFormat( LPCWSTR name )
655 return load_driver()->pRegisterClipboardFormat( name );
658 static BOOL CDECL loaderdrv_SetClipboardData( UINT format, HANDLE handle, BOOL owner )
660 return load_driver()->pSetClipboardData( format, handle, owner );
663 static LONG CDECL loaderdrv_ChangeDisplaySettingsEx( LPCWSTR name, LPDEVMODEW mode, HWND hwnd,
664 DWORD flags, LPVOID lparam )
666 return load_driver()->pChangeDisplaySettingsEx( name, mode, hwnd, flags, lparam );
669 static BOOL CDECL loaderdrv_EnumDisplayMonitors( HDC hdc, LPRECT rect, MONITORENUMPROC proc, LPARAM lp )
671 return load_driver()->pEnumDisplayMonitors( hdc, rect, proc, lp );
674 static BOOL CDECL loaderdrv_EnumDisplaySettingsEx( LPCWSTR name, DWORD num, LPDEVMODEW mode, DWORD flags )
676 return load_driver()->pEnumDisplaySettingsEx( name, num, mode, flags );
679 static BOOL CDECL loaderdrv_GetMonitorInfo( HMONITOR handle, LPMONITORINFO info )
681 return load_driver()->pGetMonitorInfo( handle, info );
684 static BOOL CDECL loaderdrv_CreateDesktopWindow( HWND hwnd )
686 return load_driver()->pCreateDesktopWindow( hwnd );
689 static BOOL CDECL loaderdrv_CreateWindow( HWND hwnd )
691 return load_driver()->pCreateWindow( hwnd );
694 static void CDECL loaderdrv_DestroyWindow( HWND hwnd )
696 load_driver()->pDestroyWindow( hwnd );
699 static void CDECL loaderdrv_GetDC( HDC hdc, HWND hwnd, HWND top_win, const RECT *win_rect,
700 const RECT *top_rect, DWORD flags )
702 load_driver()->pGetDC( hdc, hwnd, top_win, win_rect, top_rect, flags );
705 static DWORD CDECL loaderdrv_MsgWaitForMultipleObjectsEx( DWORD count, const HANDLE *handles, DWORD timeout,
706 DWORD mask, DWORD flags )
708 return load_driver()->pMsgWaitForMultipleObjectsEx( count, handles, timeout, mask, flags );
711 static void CDECL loaderdrv_ReleaseDC( HWND hwnd, HDC hdc )
713 load_driver()->pReleaseDC( hwnd, hdc );
716 static BOOL CDECL loaderdrv_ScrollDC( HDC hdc, INT dx, INT dy, const RECT *scroll, const RECT *clip,
717 HRGN hrgn, LPRECT update )
719 return load_driver()->pScrollDC( hdc, dx, dy, scroll, clip, hrgn, update );
722 static void CDECL loaderdrv_SetCapture( HWND hwnd, UINT flags )
724 load_driver()->pSetCapture( hwnd, flags );
727 static void CDECL loaderdrv_SetFocus( HWND hwnd )
729 load_driver()->pSetFocus( hwnd );
732 static void CDECL loaderdrv_SetLayeredWindowAttributes( HWND hwnd, COLORREF key, BYTE alpha, DWORD flags )
734 load_driver()->pSetLayeredWindowAttributes( hwnd, key, alpha, flags );
737 static void CDECL loaderdrv_SetParent( HWND hwnd, HWND parent, HWND old_parent )
739 load_driver()->pSetParent( hwnd, parent, old_parent );
742 static int CDECL loaderdrv_SetWindowRgn( HWND hwnd, HRGN hrgn, BOOL redraw )
744 return load_driver()->pSetWindowRgn( hwnd, hrgn, redraw );
747 static void CDECL loaderdrv_SetWindowIcon( HWND hwnd, UINT type, HICON icon )
749 load_driver()->pSetWindowIcon( hwnd, type, icon );
752 static void CDECL loaderdrv_SetWindowStyle( HWND hwnd, INT offset, STYLESTRUCT *style )
754 load_driver()->pSetWindowStyle( hwnd, offset, style );
757 static void CDECL loaderdrv_SetWindowText( HWND hwnd, LPCWSTR text )
759 load_driver()->pSetWindowText( hwnd, text );
762 static UINT CDECL loaderdrv_ShowWindow( HWND hwnd, INT cmd, RECT *rect, UINT swp )
764 return load_driver()->pShowWindow( hwnd, cmd, rect, swp );
767 static LRESULT CDECL loaderdrv_SysCommand( HWND hwnd, WPARAM wparam, LPARAM lparam )
769 return load_driver()->pSysCommand( hwnd, wparam, lparam );
772 static LRESULT CDECL loaderdrv_WindowMessage( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
774 return load_driver()->pWindowMessage( hwnd, msg, wparam, lparam );
777 static void CDECL loaderdrv_WindowPosChanging( HWND hwnd, HWND insert_after, UINT swp_flags,
778 const RECT *window_rect, const RECT *client_rect,
779 RECT *visible_rect )
781 load_driver()->pWindowPosChanging( hwnd, insert_after, swp_flags,
782 window_rect, client_rect, visible_rect );
785 static void CDECL loaderdrv_WindowPosChanged( HWND hwnd, HWND insert_after, UINT swp_flags,
786 const RECT *window_rect, const RECT *client_rect,
787 const RECT *visible_rect, const RECT *valid_rects )
789 load_driver()->pWindowPosChanged( hwnd, insert_after, swp_flags, window_rect,
790 client_rect, visible_rect, valid_rects );
793 static USER_DRIVER lazy_load_driver =
795 /* keyboard functions */
796 loaderdrv_ActivateKeyboardLayout,
797 loaderdrv_Beep,
798 loaderdrv_GetAsyncKeyState,
799 loaderdrv_GetKeyNameText,
800 loaderdrv_GetKeyboardLayout,
801 loaderdrv_GetKeyboardLayoutName,
802 loaderdrv_LoadKeyboardLayout,
803 loaderdrv_MapVirtualKeyEx,
804 loaderdrv_SendInput,
805 loaderdrv_ToUnicodeEx,
806 loaderdrv_UnloadKeyboardLayout,
807 loaderdrv_VkKeyScanEx,
808 /* cursor/icon functions */
809 loaderdrv_CreateCursorIcon,
810 loaderdrv_DestroyCursorIcon,
811 loaderdrv_SetCursor,
812 loaderdrv_GetCursorPos,
813 loaderdrv_SetCursorPos,
814 loaderdrv_ClipCursor,
815 /* screen saver functions */
816 loaderdrv_GetScreenSaveActive,
817 loaderdrv_SetScreenSaveActive,
818 /* clipboard functions */
819 loaderdrv_AcquireClipboard,
820 loaderdrv_CountClipboardFormats,
821 loaderdrv_EmptyClipboard,
822 loaderdrv_EndClipboardUpdate,
823 loaderdrv_EnumClipboardFormats,
824 loaderdrv_GetClipboardData,
825 loaderdrv_GetClipboardFormatName,
826 loaderdrv_IsClipboardFormatAvailable,
827 loaderdrv_RegisterClipboardFormat,
828 loaderdrv_SetClipboardData,
829 /* display modes */
830 loaderdrv_ChangeDisplaySettingsEx,
831 loaderdrv_EnumDisplayMonitors,
832 loaderdrv_EnumDisplaySettingsEx,
833 loaderdrv_GetMonitorInfo,
834 /* windowing functions */
835 loaderdrv_CreateDesktopWindow,
836 loaderdrv_CreateWindow,
837 loaderdrv_DestroyWindow,
838 loaderdrv_GetDC,
839 loaderdrv_MsgWaitForMultipleObjectsEx,
840 loaderdrv_ReleaseDC,
841 loaderdrv_ScrollDC,
842 loaderdrv_SetCapture,
843 loaderdrv_SetFocus,
844 loaderdrv_SetLayeredWindowAttributes,
845 loaderdrv_SetParent,
846 loaderdrv_SetWindowRgn,
847 loaderdrv_SetWindowIcon,
848 loaderdrv_SetWindowStyle,
849 loaderdrv_SetWindowText,
850 loaderdrv_ShowWindow,
851 loaderdrv_SysCommand,
852 loaderdrv_WindowMessage,
853 loaderdrv_WindowPosChanging,
854 loaderdrv_WindowPosChanged