[IMM32] Stub ImmRegisterClient CORE-16479 (#3009)

Add a stub for ImmRegisterClient function in imm32.dll. CORE-16479
This commit is contained in:
Oleg Dubinskiy 2020-08-09 16:49:00 +03:00 committed by GitHub
parent 2705abfb07
commit 8d682f9b05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 2 deletions

View file

@ -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

View file

@ -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)