mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[IMM32] Stub ImmRegisterClient CORE-16479 (#3009)
Add a stub for ImmRegisterClient function in imm32.dll. CORE-16479
This commit is contained in:
parent
2705abfb07
commit
8d682f9b05
2 changed files with 13 additions and 2 deletions
|
@ -3207,8 +3207,8 @@ BOOL WINAPI ImmDisableLegacyIME(void)
|
|||
FIXME("stub\n");
|
||||
return TRUE;
|
||||
}
|
||||
#ifdef __REACTOS__
|
||||
|
||||
#ifdef __REACTOS__
|
||||
/***********************************************************************
|
||||
* ImmSetActiveContext(IMM32.@)
|
||||
*/
|
||||
|
@ -3231,4 +3231,15 @@ BOOL WINAPI ImmSetActiveContextConsoleIME(HWND hwnd, BOOL fFlag)
|
|||
return ImmSetActiveContext(hwnd, hIMC, fFlag);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ImmRegisterClient(IMM32.@)
|
||||
* ( Undocumented, called from user32.dll )
|
||||
*/
|
||||
BOOL WINAPI ImmRegisterClient(PVOID ptr, /* FIXME: should point to SHAREDINFO structure */
|
||||
HINSTANCE hMod)
|
||||
{
|
||||
FIXME("Stub\n");
|
||||
return TRUE;
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -77,7 +77,7 @@
|
|||
@ stdcall ImmProcessKey(long long long long long)
|
||||
@ stub ImmPutImeMenuItemsIntoMappedFile
|
||||
@ stdcall ImmReSizeIMCC(long long)
|
||||
@ stub ImmRegisterClient
|
||||
@ stdcall ImmRegisterClient(ptr ptr)
|
||||
@ stdcall ImmRegisterWordA(long str long str)
|
||||
@ stdcall ImmRegisterWordW(long wstr long wstr)
|
||||
@ stdcall ImmReleaseContext(long long)
|
||||
|
|
Loading…
Reference in a new issue