From f18384ae4f9cb92c4338726f7179dfec8542ef0c Mon Sep 17 00:00:00 2001 From: Saveliy Tretiakov Date: Sun, 1 Apr 2007 17:34:00 +0000 Subject: [PATCH] Implement UserUnloadKeyboardLayout() svn path=/trunk/; revision=26234 --- reactos/dll/win32/user32/user32.def | 4 ++-- reactos/dll/win32/user32/windows/input.c | 21 --------------------- 2 files changed, 2 insertions(+), 23 deletions(-) diff --git a/reactos/dll/win32/user32/user32.def b/reactos/dll/win32/user32/user32.def index 9c30a850864..5d844ab96e3 100644 --- a/reactos/dll/win32/user32/user32.def +++ b/reactos/dll/win32/user32/user32.def @@ -697,13 +697,13 @@ UnhookWinEvent@4 UnhookWindowsHook@8 UnhookWindowsHookEx@4 UnionRect@12 -UnloadKeyboardLayout@4 +UnloadKeyboardLayout@4=NtUserUnloadKeyboardLayout@4 UnlockWindowStation@4 UnpackDDElParam@16 UnregisterClassA@8 UnregisterClassW@8 UnregisterDeviceNotification@4 -UnregisterHotKey@8 +UnregisterHotKey@8=NtUserUnregisterHotKey@8 UnregisterMessagePumpHook@0 UnregisterUserApiHook@0 UpdateLayeredWindow@36 diff --git a/reactos/dll/win32/user32/windows/input.c b/reactos/dll/win32/user32/windows/input.c index b691e198b77..abb4b8f1a9b 100644 --- a/reactos/dll/win32/user32/windows/input.c +++ b/reactos/dll/win32/user32/windows/input.c @@ -517,27 +517,6 @@ ToUnicodeEx(UINT wVirtKey, } -/* - * @unimplemented - */ -BOOL STDCALL -UnloadKeyboardLayout(HKL hkl) -{ - UNIMPLEMENTED; - return FALSE; -} - - -/* - * @implemented - */ -BOOL STDCALL -UnregisterHotKey(HWND hWnd, - int id) -{ - return (BOOL)NtUserUnregisterHotKey(hWnd, id); -} - /* * @implemented