mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +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");
|
FIXME("stub\n");
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
#ifdef __REACTOS__
|
|
||||||
|
|
||||||
|
#ifdef __REACTOS__
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* ImmSetActiveContext(IMM32.@)
|
* ImmSetActiveContext(IMM32.@)
|
||||||
*/
|
*/
|
||||||
|
@ -3231,4 +3231,15 @@ BOOL WINAPI ImmSetActiveContextConsoleIME(HWND hwnd, BOOL fFlag)
|
||||||
return ImmSetActiveContext(hwnd, hIMC, fFlag);
|
return ImmSetActiveContext(hwnd, hIMC, fFlag);
|
||||||
return FALSE;
|
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
|
#endif
|
||||||
|
|
|
@ -77,7 +77,7 @@
|
||||||
@ stdcall ImmProcessKey(long long long long long)
|
@ stdcall ImmProcessKey(long long long long long)
|
||||||
@ stub ImmPutImeMenuItemsIntoMappedFile
|
@ stub ImmPutImeMenuItemsIntoMappedFile
|
||||||
@ stdcall ImmReSizeIMCC(long long)
|
@ stdcall ImmReSizeIMCC(long long)
|
||||||
@ stub ImmRegisterClient
|
@ stdcall ImmRegisterClient(ptr ptr)
|
||||||
@ stdcall ImmRegisterWordA(long str long str)
|
@ stdcall ImmRegisterWordA(long str long str)
|
||||||
@ stdcall ImmRegisterWordW(long wstr long wstr)
|
@ stdcall ImmRegisterWordW(long wstr long wstr)
|
||||||
@ stdcall ImmReleaseContext(long long)
|
@ stdcall ImmReleaseContext(long long)
|
||||||
|
|
Loading…
Reference in a new issue