imm32: add a stub for ImmGetHotKey (try 2)

Austin English austinenglish at gmail.com
Tue Jan 24 21:32:05 CST 2012


-- 
-Austin
-------------- next part --------------
diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c
index decdcae..2197762 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 *key, HKL hkl)
+{
+    FIXME("%x, %p, %p, %p: stub\n", hotkey, modifiers, key, hkl);
+    return FALSE;
+}
+
diff --git a/dlls/imm32/imm32.spec b/dlls/imm32/imm32.spec
index 03f64a5..37c46ab 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 ptr)
 @ stdcall ImmGetIMCCLockCount(long)
 @ stdcall ImmGetIMCCSize(long)
 @ stdcall ImmGetIMCLockCount(long)


More information about the wine-patches mailing list