ImmGetHotKey

BOOL WINAPI ImmGetHotKey(DWORD dwHotKeyID, LPUINT lpuModifiers, 
    LPUINT lpuVKey, LPHKL lphKL)
 

Gets the value of the IME hot key. This function is called by the control panel.

If successful, the return value is TRUE. Otherwise, it is FALSE.

dwHotKeyID
Hot key identifier.
lpuModifiers
Value that specifies the keys that must be combined with lpuVKey to trigger the hot key. Can be a combination of these values:
Value Meaning
MOD_ALT ALT key.
MOD_CONTROL CTRL key.
MOD_SHIFT SHIFT key.
MOD_LEFT Use key on the left side of keyboard.
MOD_RIGHT Use key on the right side of keyboard.
MOD_ON_KEYUP Trigger hot key when hot key is released.
MOD_IGNORE_ALL_MODIFIER Ignore modifier keys.

lpuVKey
Virtual key code of this hot key.
lphKL
Handle of the keyboard layout for the IME. If the return value of this parameter is NULL, this hot key can switch to the IME with this keyboard layout.