Austin English : imm32: Add a stub for ImmGetHotKey.

Alexandre Julliard julliard at winehq.org
Wed Jan 25 15:14:03 CST 2012


Module: wine
Branch: master
Commit: 58e4febe4d2441040f4b78504a2f516d21a43b3f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=58e4febe4d2441040f4b78504a2f516d21a43b3f

Author: Austin English <austinenglish at gmail.com>
Date:   Tue Jan 24 19:32:05 2012 -0800

imm32: Add a stub for ImmGetHotKey.

---

 dlls/imm32/imm.c      |   10 ++++++++++
 dlls/imm32/imm32.spec |    2 +-
 2 files changed, 11 insertions(+), 1 deletions(-)

diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c
index decdcae..7394101 100644
--- a/dlls/imm32/imm.c
+++ b/dlls/imm32/imm.c
@@ -2845,3 +2845,13 @@ 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-cvs mailing list