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
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;
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 );
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;
65 driver_load_error = GetLastError();
67 driver = HeapAlloc( GetProcessHeap(), 0, sizeof(*driver) );
68 *driver = null_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);
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);
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 );
142 /* unload the graphics driver on process exit */
143 void USER_unload_driver(void)
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 /**********************************************************************
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 )
164 static void CDECL nulldrv_Beep(void)
168 static SHORT CDECL nulldrv_GetAsyncKeyState( INT key )
173 static INT CDECL nulldrv_GetKeyNameText( LONG lparam, LPWSTR buffer, INT size )
178 static HKL CDECL nulldrv_GetKeyboardLayout( DWORD thread_id )
183 static BOOL CDECL nulldrv_GetKeyboardLayoutName( LPWSTR name )
188 static HKL CDECL nulldrv_LoadKeyboardLayout( LPCWSTR name, UINT flags )
193 static UINT CDECL nulldrv_MapVirtualKeyEx( UINT code, UINT type, HKL layout )
198 static BOOL CDECL nulldrv_RegisterHotKey( HWND hwnd, UINT modifiers, UINT vk )
203 static INT CDECL nulldrv_ToUnicodeEx( UINT virt, UINT scan, const BYTE *state, LPWSTR str,
204 int size, UINT flags, HKL layout )
209 static BOOL CDECL nulldrv_UnloadKeyboardLayout( HKL layout )
214 static void CDECL nulldrv_UnregisterHotKey( HWND hwnd, UINT modifiers, UINT vk )
218 static SHORT CDECL nulldrv_VkKeyScanEx( WCHAR ch, HKL layout )
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 )
240 static BOOL CDECL nulldrv_SetCursorPos( INT x, INT y )
245 static BOOL CDECL nulldrv_ClipCursor( LPCRECT clip )
250 static BOOL CDECL nulldrv_GetScreenSaveActive(void)
255 static void CDECL nulldrv_SetScreenSaveActive( BOOL on )
259 static INT CDECL nulldrv_AcquireClipboard( HWND hwnd )
264 static BOOL CDECL nulldrv_CountClipboardFormats(void)
269 static void CDECL nulldrv_EmptyClipboard( BOOL keepunowned )
273 static void CDECL nulldrv_EndClipboardUpdate(void)
277 static UINT CDECL nulldrv_EnumClipboardFormats( UINT format )
282 static HANDLE CDECL nulldrv_GetClipboardData( UINT format )
287 static BOOL CDECL nulldrv_IsClipboardFormatAvailable( UINT format )
292 static BOOL CDECL nulldrv_SetClipboardData( UINT format, HANDLE handle, BOOL owner )
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 )
308 static BOOL CDECL nulldrv_EnumDisplaySettingsEx( LPCWSTR name, DWORD num, LPDEVMODEW mode, DWORD flags )
313 static BOOL CDECL nulldrv_GetMonitorInfo( HMONITOR handle, LPMONITORINFO info )
318 static BOOL CDECL nulldrv_CreateDesktopWindow( HWND hwnd )
323 static BOOL CDECL nulldrv_CreateWindow( HWND hwnd )
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" );
337 case ERROR_DLL_INIT_FAILED:
338 MESSAGE( "Make sure that your X server is running and that $DISPLAY is set correctly.\n" );
341 MESSAGE( "Unknown error (%d).\n", driver_load_error );
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 )
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 )
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 )
411 static LRESULT CDECL nulldrv_SysCommand( HWND hwnd, WPARAM wparam, LPARAM lparam )
416 static LRESULT CDECL nulldrv_WindowMessage( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
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, struct window_surface **surface )
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,
430 struct window_surface *surface )
434 static USER_DRIVER null_driver =
436 /* keyboard functions */
437 nulldrv_ActivateKeyboardLayout,
439 nulldrv_GetAsyncKeyState,
440 nulldrv_GetKeyNameText,
441 nulldrv_GetKeyboardLayout,
442 nulldrv_GetKeyboardLayoutName,
443 nulldrv_LoadKeyboardLayout,
444 nulldrv_MapVirtualKeyEx,
445 nulldrv_RegisterHotKey,
447 nulldrv_UnloadKeyboardLayout,
448 nulldrv_UnregisterHotKey,
450 /* cursor/icon functions */
451 nulldrv_CreateCursorIcon,
452 nulldrv_DestroyCursorIcon,
454 nulldrv_GetCursorPos,
455 nulldrv_SetCursorPos,
457 /* screen saver functions */
458 nulldrv_GetScreenSaveActive,
459 nulldrv_SetScreenSaveActive,
460 /* clipboard functions */
461 nulldrv_AcquireClipboard,
462 nulldrv_CountClipboardFormats,
463 nulldrv_EmptyClipboard,
464 nulldrv_EndClipboardUpdate,
465 nulldrv_EnumClipboardFormats,
466 nulldrv_GetClipboardData,
467 nulldrv_IsClipboardFormatAvailable,
468 nulldrv_SetClipboardData,
470 nulldrv_ChangeDisplaySettingsEx,
471 nulldrv_EnumDisplayMonitors,
472 nulldrv_EnumDisplaySettingsEx,
473 nulldrv_GetMonitorInfo,
474 /* windowing functions */
475 nulldrv_CreateDesktopWindow,
476 nulldrv_CreateWindow,
477 nulldrv_DestroyWindow,
479 nulldrv_MsgWaitForMultipleObjectsEx,
484 nulldrv_SetLayeredWindowAttributes,
486 nulldrv_SetWindowRgn,
487 nulldrv_SetWindowIcon,
488 nulldrv_SetWindowStyle,
489 nulldrv_SetWindowText,
492 nulldrv_WindowMessage,
493 nulldrv_WindowPosChanging,
494 nulldrv_WindowPosChanged
498 /**********************************************************************
499 * Lazy loading user driver
501 * Initial driver used before another driver is loaded.
502 * Each entry point simply loads the real driver and chains to it.
505 static HKL CDECL loaderdrv_ActivateKeyboardLayout( HKL layout, UINT flags )
507 return load_driver()->pActivateKeyboardLayout( layout, flags );
510 static void CDECL loaderdrv_Beep(void)
512 load_driver()->pBeep();
515 static SHORT CDECL loaderdrv_GetAsyncKeyState( INT key )
517 return load_driver()->pGetAsyncKeyState( key );
520 static INT CDECL loaderdrv_GetKeyNameText( LONG lparam, LPWSTR buffer, INT size )
522 return load_driver()->pGetKeyNameText( lparam, buffer, size );
525 static HKL CDECL loaderdrv_GetKeyboardLayout( DWORD thread_id )
527 return load_driver()->pGetKeyboardLayout( thread_id );
530 static BOOL CDECL loaderdrv_GetKeyboardLayoutName( LPWSTR name )
532 return load_driver()->pGetKeyboardLayoutName( name );
535 static HKL CDECL loaderdrv_LoadKeyboardLayout( LPCWSTR name, UINT flags )
537 return load_driver()->pLoadKeyboardLayout( name, flags );
540 static UINT CDECL loaderdrv_MapVirtualKeyEx( UINT code, UINT type, HKL layout )
542 return load_driver()->pMapVirtualKeyEx( code, type, layout );
545 static BOOL CDECL loaderdrv_RegisterHotKey( HWND hwnd, UINT modifiers, UINT vk )
547 return load_driver()->pRegisterHotKey( hwnd, modifiers, vk );
550 static INT CDECL loaderdrv_ToUnicodeEx( UINT virt, UINT scan, const BYTE *state, LPWSTR str,
551 int size, UINT flags, HKL layout )
553 return load_driver()->pToUnicodeEx( virt, scan, state, str, size, flags, layout );
556 static BOOL CDECL loaderdrv_UnloadKeyboardLayout( HKL layout )
558 return load_driver()->pUnloadKeyboardLayout( layout );
561 static void CDECL loaderdrv_UnregisterHotKey( HWND hwnd, UINT modifiers, UINT vk )
563 load_driver()->pUnregisterHotKey( hwnd, modifiers, vk );
566 static SHORT CDECL loaderdrv_VkKeyScanEx( WCHAR ch, HKL layout )
568 return load_driver()->pVkKeyScanEx( ch, layout );
571 static void CDECL loaderdrv_CreateCursorIcon( HCURSOR cursor )
573 load_driver()->pCreateCursorIcon( cursor );
576 static void CDECL loaderdrv_DestroyCursorIcon( HCURSOR cursor )
578 load_driver()->pDestroyCursorIcon( cursor );
581 static void CDECL loaderdrv_SetCursor( HCURSOR cursor )
583 load_driver()->pSetCursor( cursor );
586 static BOOL CDECL loaderdrv_GetCursorPos( LPPOINT pt )
588 return load_driver()->pGetCursorPos( pt );
591 static BOOL CDECL loaderdrv_SetCursorPos( INT x, INT y )
593 return load_driver()->pSetCursorPos( x, y );
596 static BOOL CDECL loaderdrv_ClipCursor( LPCRECT clip )
598 return load_driver()->pClipCursor( clip );
601 static BOOL CDECL loaderdrv_GetScreenSaveActive(void)
603 return load_driver()->pGetScreenSaveActive();
606 static void CDECL loaderdrv_SetScreenSaveActive( BOOL on )
608 load_driver()->pSetScreenSaveActive( on );
611 static INT CDECL loaderdrv_AcquireClipboard( HWND hwnd )
613 return load_driver()->pAcquireClipboard( hwnd );
616 static BOOL CDECL loaderdrv_CountClipboardFormats(void)
618 return load_driver()->pCountClipboardFormats();
621 static void CDECL loaderdrv_EmptyClipboard( BOOL keepunowned )
623 load_driver()->pEmptyClipboard( keepunowned );
626 static void CDECL loaderdrv_EndClipboardUpdate(void)
628 load_driver()->pEndClipboardUpdate();
631 static UINT CDECL loaderdrv_EnumClipboardFormats( UINT format )
633 return load_driver()->pEnumClipboardFormats( format );
636 static HANDLE CDECL loaderdrv_GetClipboardData( UINT format )
638 return load_driver()->pGetClipboardData( format );
641 static BOOL CDECL loaderdrv_IsClipboardFormatAvailable( UINT format )
643 return load_driver()->pIsClipboardFormatAvailable( format );
646 static BOOL CDECL loaderdrv_SetClipboardData( UINT format, HANDLE handle, BOOL owner )
648 return load_driver()->pSetClipboardData( format, handle, owner );
651 static LONG CDECL loaderdrv_ChangeDisplaySettingsEx( LPCWSTR name, LPDEVMODEW mode, HWND hwnd,
652 DWORD flags, LPVOID lparam )
654 return load_driver()->pChangeDisplaySettingsEx( name, mode, hwnd, flags, lparam );
657 static BOOL CDECL loaderdrv_EnumDisplayMonitors( HDC hdc, LPRECT rect, MONITORENUMPROC proc, LPARAM lp )
659 return load_driver()->pEnumDisplayMonitors( hdc, rect, proc, lp );
662 static BOOL CDECL loaderdrv_EnumDisplaySettingsEx( LPCWSTR name, DWORD num, LPDEVMODEW mode, DWORD flags )
664 return load_driver()->pEnumDisplaySettingsEx( name, num, mode, flags );
667 static BOOL CDECL loaderdrv_GetMonitorInfo( HMONITOR handle, LPMONITORINFO info )
669 return load_driver()->pGetMonitorInfo( handle, info );
672 static BOOL CDECL loaderdrv_CreateDesktopWindow( HWND hwnd )
674 return load_driver()->pCreateDesktopWindow( hwnd );
677 static BOOL CDECL loaderdrv_CreateWindow( HWND hwnd )
679 return load_driver()->pCreateWindow( hwnd );
682 static void CDECL loaderdrv_DestroyWindow( HWND hwnd )
684 load_driver()->pDestroyWindow( hwnd );
687 static void CDECL loaderdrv_GetDC( HDC hdc, HWND hwnd, HWND top_win, const RECT *win_rect,
688 const RECT *top_rect, DWORD flags )
690 load_driver()->pGetDC( hdc, hwnd, top_win, win_rect, top_rect, flags );
693 static DWORD CDECL loaderdrv_MsgWaitForMultipleObjectsEx( DWORD count, const HANDLE *handles, DWORD timeout,
694 DWORD mask, DWORD flags )
696 return load_driver()->pMsgWaitForMultipleObjectsEx( count, handles, timeout, mask, flags );
699 static void CDECL loaderdrv_ReleaseDC( HWND hwnd, HDC hdc )
701 load_driver()->pReleaseDC( hwnd, hdc );
704 static BOOL CDECL loaderdrv_ScrollDC( HDC hdc, INT dx, INT dy, const RECT *scroll, const RECT *clip,
705 HRGN hrgn, LPRECT update )
707 return load_driver()->pScrollDC( hdc, dx, dy, scroll, clip, hrgn, update );
710 static void CDECL loaderdrv_SetCapture( HWND hwnd, UINT flags )
712 load_driver()->pSetCapture( hwnd, flags );
715 static void CDECL loaderdrv_SetFocus( HWND hwnd )
717 load_driver()->pSetFocus( hwnd );
720 static void CDECL loaderdrv_SetLayeredWindowAttributes( HWND hwnd, COLORREF key, BYTE alpha, DWORD flags )
722 load_driver()->pSetLayeredWindowAttributes( hwnd, key, alpha, flags );
725 static void CDECL loaderdrv_SetParent( HWND hwnd, HWND parent, HWND old_parent )
727 load_driver()->pSetParent( hwnd, parent, old_parent );
730 static int CDECL loaderdrv_SetWindowRgn( HWND hwnd, HRGN hrgn, BOOL redraw )
732 return load_driver()->pSetWindowRgn( hwnd, hrgn, redraw );
735 static void CDECL loaderdrv_SetWindowIcon( HWND hwnd, UINT type, HICON icon )
737 load_driver()->pSetWindowIcon( hwnd, type, icon );
740 static void CDECL loaderdrv_SetWindowStyle( HWND hwnd, INT offset, STYLESTRUCT *style )
742 load_driver()->pSetWindowStyle( hwnd, offset, style );
745 static void CDECL loaderdrv_SetWindowText( HWND hwnd, LPCWSTR text )
747 load_driver()->pSetWindowText( hwnd, text );
750 static UINT CDECL loaderdrv_ShowWindow( HWND hwnd, INT cmd, RECT *rect, UINT swp )
752 return load_driver()->pShowWindow( hwnd, cmd, rect, swp );
755 static LRESULT CDECL loaderdrv_SysCommand( HWND hwnd, WPARAM wparam, LPARAM lparam )
757 return load_driver()->pSysCommand( hwnd, wparam, lparam );
760 static LRESULT CDECL loaderdrv_WindowMessage( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
762 return load_driver()->pWindowMessage( hwnd, msg, wparam, lparam );
765 static void CDECL loaderdrv_WindowPosChanging( HWND hwnd, HWND insert_after, UINT swp_flags,
766 const RECT *window_rect, const RECT *client_rect,
767 RECT *visible_rect, struct window_surface **surface )
769 load_driver()->pWindowPosChanging( hwnd, insert_after, swp_flags,
770 window_rect, client_rect, visible_rect, surface );
773 static void CDECL loaderdrv_WindowPosChanged( HWND hwnd, HWND insert_after, UINT swp_flags,
774 const RECT *window_rect, const RECT *client_rect,
775 const RECT *visible_rect, const RECT *valid_rects,
776 struct window_surface *surface )
778 load_driver()->pWindowPosChanged( hwnd, insert_after, swp_flags, window_rect,
779 client_rect, visible_rect, valid_rects, surface );
782 static USER_DRIVER lazy_load_driver =
784 /* keyboard functions */
785 loaderdrv_ActivateKeyboardLayout,
787 loaderdrv_GetAsyncKeyState,
788 loaderdrv_GetKeyNameText,
789 loaderdrv_GetKeyboardLayout,
790 loaderdrv_GetKeyboardLayoutName,
791 loaderdrv_LoadKeyboardLayout,
792 loaderdrv_MapVirtualKeyEx,
793 loaderdrv_RegisterHotKey,
794 loaderdrv_ToUnicodeEx,
795 loaderdrv_UnloadKeyboardLayout,
796 loaderdrv_UnregisterHotKey,
797 loaderdrv_VkKeyScanEx,
798 /* cursor/icon functions */
799 loaderdrv_CreateCursorIcon,
800 loaderdrv_DestroyCursorIcon,
802 loaderdrv_GetCursorPos,
803 loaderdrv_SetCursorPos,
804 loaderdrv_ClipCursor,
805 /* screen saver functions */
806 loaderdrv_GetScreenSaveActive,
807 loaderdrv_SetScreenSaveActive,
808 /* clipboard functions */
809 loaderdrv_AcquireClipboard,
810 loaderdrv_CountClipboardFormats,
811 loaderdrv_EmptyClipboard,
812 loaderdrv_EndClipboardUpdate,
813 loaderdrv_EnumClipboardFormats,
814 loaderdrv_GetClipboardData,
815 loaderdrv_IsClipboardFormatAvailable,
816 loaderdrv_SetClipboardData,
818 loaderdrv_ChangeDisplaySettingsEx,
819 loaderdrv_EnumDisplayMonitors,
820 loaderdrv_EnumDisplaySettingsEx,
821 loaderdrv_GetMonitorInfo,
822 /* windowing functions */
823 loaderdrv_CreateDesktopWindow,
824 loaderdrv_CreateWindow,
825 loaderdrv_DestroyWindow,
827 loaderdrv_MsgWaitForMultipleObjectsEx,
830 loaderdrv_SetCapture,
832 loaderdrv_SetLayeredWindowAttributes,
834 loaderdrv_SetWindowRgn,
835 loaderdrv_SetWindowIcon,
836 loaderdrv_SetWindowStyle,
837 loaderdrv_SetWindowText,
838 loaderdrv_ShowWindow,
839 loaderdrv_SysCommand,
840 loaderdrv_WindowMessage,
841 loaderdrv_WindowPosChanging,
842 loaderdrv_WindowPosChanged