mirror of
https://github.com/reactos/reactos.git
synced 2025-04-18 11:36:46 +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");
|
FIXME("stub\n");
|
||||||
return TRUE;
|
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 ImmSendIMEMessageExA
|
||||||
@ stub ImmSendIMEMessageExW
|
@ stub ImmSendIMEMessageExW
|
||||||
@ stub ImmSendMessageToActiveDefImeWndW
|
@ stub ImmSendMessageToActiveDefImeWndW
|
||||||
@ stub ImmSetActiveContext
|
@ stdcall ImmSetActiveContext(ptr ptr long)
|
||||||
@ stub ImmSetActiveContextConsoleIME
|
@ stdcall ImmSetActiveContextConsoleIME(ptr long)
|
||||||
@ stdcall ImmSetCandidateWindow(long ptr)
|
@ stdcall ImmSetCandidateWindow(long ptr)
|
||||||
@ stdcall ImmSetCompositionFontA(long ptr)
|
@ stdcall ImmSetCompositionFontA(long ptr)
|
||||||
@ stdcall ImmSetCompositionFontW(long ptr)
|
@ stdcall ImmSetCompositionFontW(long ptr)
|
||||||
|
|
Loading…
Reference in a new issue