imm32: Add a stub for ImmGetHotKey.
This commit is contained in:
parent
9a2c2ed5c2
commit
58e4febe4d
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue