mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 16:40:27 +00:00
[IMM32] Implement ImmWINNLSGetIMEHotkey (#3919)
- Implement ImmWINNLSGetIMEHotkey function. - Modify imm32.spec. CORE-11700
This commit is contained in:
parent
1d0587fc27
commit
d78e9fbb45
2 changed files with 10 additions and 1 deletions
|
@ -5100,6 +5100,15 @@ Quit:
|
|||
return NtUserGetImeInfoEx(pImeInfoEx, SearchType);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ImmWINNLSGetIMEHotkey (IMM32.@)
|
||||
*/
|
||||
UINT WINAPI ImmWINNLSGetIMEHotkey(HWND hwndIme)
|
||||
{
|
||||
TRACE("(%p)\n", hwndIme);
|
||||
return 0; /* This is correct. This function of Windows just returns zero. */
|
||||
}
|
||||
|
||||
BOOL WINAPI User32InitializeImmEntryTable(DWORD);
|
||||
|
||||
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved)
|
||||
|
|
|
@ -112,4 +112,4 @@
|
|||
@ stdcall ImmUnregisterWordW(long wstr long wstr)
|
||||
@ stdcall -stub ImmWINNLSEnableIME(ptr long)
|
||||
@ stdcall -stub ImmWINNLSGetEnableStatus(ptr)
|
||||
@ stub ImmWINNLSGetIMEHotkey
|
||||
@ stdcall ImmWINNLSGetIMEHotkey(ptr)
|
||||
|
|
Loading…
Reference in a new issue