mirror of
https://github.com/reactos/reactos.git
synced 2025-04-11 16:24:39 +00:00
[IMM32] Add ImmSetActiveContext stub (#3026)
CORE-11700 Add imm32!ImmSetActiveContext and ImmSetActiveContextConsoleIME function stubs.
This commit is contained in:
parent
75a078709a
commit
f7865b8bfa
2 changed files with 24 additions and 2 deletions
|
@ -3174,3 +3174,25 @@ BOOL WINAPI ImmDisableLegacyIME(void)
|
|||
FIXME("stub\n");
|
||||
return TRUE;
|
||||
}
|
||||
#ifdef __REACTOS__
|
||||
|
||||
/***********************************************************************
|
||||
* ImmSetActiveContext(IMM32.@)
|
||||
*/
|
||||
BOOL WINAPI ImmSetActiveContext(HWND hwnd, HIMC hIMC, BOOL fFlag)
|
||||
{
|
||||
FIXME("stub\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ImmSetActiveContextConsoleIME(IMM32.@)
|
||||
*/
|
||||
BOOL WINAPI ImmSetActiveContextConsoleIME(HWND hwnd, BOOL fFlag)
|
||||
{
|
||||
HIMC hIMC = ImmGetContext(hwnd);
|
||||
if (hIMC)
|
||||
return ImmSetActiveContext(hwnd, hIMC, fFlag);
|
||||
return FALSE;
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -86,8 +86,8 @@
|
|||
@ stub ImmSendIMEMessageExA
|
||||
@ stub ImmSendIMEMessageExW
|
||||
@ stub ImmSendMessageToActiveDefImeWndW
|
||||
@ stub ImmSetActiveContext
|
||||
@ stub ImmSetActiveContextConsoleIME
|
||||
@ stdcall ImmSetActiveContext(ptr ptr long)
|
||||
@ stdcall ImmSetActiveContextConsoleIME(ptr long)
|
||||
@ stdcall ImmSetCandidateWindow(long ptr)
|
||||
@ stdcall ImmSetCompositionFontA(long ptr)
|
||||
@ stdcall ImmSetCompositionFontW(long ptr)
|
||||
|
|
Loading…
Reference in a new issue