imm32: add a stub for ImmGetHotKey

Austin English austinenglish at gmail.com
Wed Jan 4 01:47:51 CST 2012


http://bugs.winehq.org/show_bug.cgi?id=28171

-- 
-Austin
-------------- next part --------------
diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c
index decdcae..647367f 100644
--- a/dlls/imm32/imm.c
+++ b/dlls/imm32/imm.c
@@ -2845,3 +2845,14 @@ BOOL WINAPI ImmEnumInputContext(DWORD idThread, IMCENUMPROC lpfn, LPARAM lParam)
     FIXME("Stub\n");
     return FALSE;
 }
+
+/***********************************************************************
+ *              ImmGetHotKey(IMM32.@)
+ */
+
+BOOL WINAPI ImmGetHotKey(DWORD hotkey, UINT modifiers, UINT VKey, HKL hKL)
+{
+    FIXME("Stub\n");
+    return FALSE;
+}
+
diff --git a/dlls/imm32/imm32.spec b/dlls/imm32/imm32.spec
index 03f64a5..2bb08b4 100644
--- a/dlls/imm32/imm32.spec
+++ b/dlls/imm32/imm32.spec
@@ -39,7 +39,7 @@
 @ stdcall ImmGetDescriptionW(long ptr long)
 @ stdcall ImmGetGuideLineA(long long ptr long)
 @ stdcall ImmGetGuideLineW(long long ptr long)
-@ stub ImmGetHotKey
+@ stdcall ImmGetHotKey(long ptr ptr long)
 @ stdcall ImmGetIMCCLockCount(long)
 @ stdcall ImmGetIMCCSize(long)
 @ stdcall ImmGetIMCLockCount(long)


More information about the wine-patches mailing list