include: Add Imm(Get|Set)HotKey declarations.

This commit is contained in:
Rémi Bernon 2022-12-04 20:28:15 +01:00 committed by Alexandre Julliard
parent f371309f6d
commit 333ab2b4d6
2 changed files with 3 additions and 1 deletions

View file

@ -3116,7 +3116,7 @@ BOOL WINAPI ImmEnumInputContext(DWORD idThread, IMCENUMPROC lpfn, LPARAM lParam)
* ImmGetHotKey(IMM32.@)
*/
BOOL WINAPI ImmGetHotKey(DWORD hotkey, UINT *modifiers, UINT *key, HKL hkl)
BOOL WINAPI ImmGetHotKey(DWORD hotkey, UINT *modifiers, UINT *key, HKL *hkl)
{
FIXME("%lx, %p, %p, %p: stub\n", hotkey, modifiers, key, hkl);
return FALSE;

View file

@ -158,6 +158,8 @@ DWORD WINAPI ImmGetIMCCSize(HIMCC);
#define NI_SETCANDIDATE_PAGESIZE 0x0017
#define NI_IMEMENUSELECTED 0x0018
BOOL WINAPI ImmGetHotKey(DWORD,UINT*,UINT*,HKL*);
BOOL WINAPI ImmSetHotKey(DWORD,UINT,UINT,HKL);
BOOL WINAPI ImmGenerateMessage(HIMC);
LRESULT WINAPI ImmRequestMessageA(HIMC, WPARAM, LPARAM);
LRESULT WINAPI ImmRequestMessageW(HIMC, WPARAM, LPARAM);