Commit 710858ab authored by Alexandre Julliard's avatar Alexandre Julliard

winex11: Remove the no longer needed GetAsyncKeyState entry point.

parent d5244c3b
...@@ -1902,16 +1902,6 @@ static BOOL match_x11_keyboard_layout(HKL hkl) ...@@ -1902,16 +1902,6 @@ static BOOL match_x11_keyboard_layout(HKL hkl)
return (hkl == xHkl); return (hkl == xHkl);
} }
/**********************************************************************
* GetAsyncKeyState (X11DRV.@)
*/
SHORT CDECL X11DRV_GetAsyncKeyState(INT key)
{
/* Photoshop livelocks unless mouse events are included here */
X11DRV_MsgWaitForMultipleObjectsEx( 0, NULL, 0, QS_KEY | QS_MOUSE, 0 );
return -1;
}
/*********************************************************************** /***********************************************************************
* GetKeyboardLayout (X11DRV.@) * GetKeyboardLayout (X11DRV.@)
......
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
@ cdecl ActivateKeyboardLayout(long long) X11DRV_ActivateKeyboardLayout @ cdecl ActivateKeyboardLayout(long long) X11DRV_ActivateKeyboardLayout
@ cdecl Beep() X11DRV_Beep @ cdecl Beep() X11DRV_Beep
@ cdecl GetAsyncKeyState(long) X11DRV_GetAsyncKeyState
@ cdecl GetKeyNameText(long ptr long) X11DRV_GetKeyNameText @ cdecl GetKeyNameText(long ptr long) X11DRV_GetKeyNameText
@ cdecl GetKeyboardLayout(long) X11DRV_GetKeyboardLayout @ cdecl GetKeyboardLayout(long) X11DRV_GetKeyboardLayout
@ cdecl GetKeyboardLayoutName(ptr) X11DRV_GetKeyboardLayoutName @ cdecl GetKeyboardLayoutName(ptr) X11DRV_GetKeyboardLayoutName
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment