mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 15:05:54 +00:00
[IMM32] Rewrite ImmAssociateContextEx (#3961)
- Rewrite ImmAssociateContextEx function. - Modify NtUserAssociateInputContext prototype. CORE-11700
This commit is contained in:
parent
afb6c8a129
commit
df6fff78bb
4 changed files with 38 additions and 41 deletions
|
@ -1317,10 +1317,7 @@ C_ASSERT(sizeof(CLIENTIMC) == 0x34);
|
|||
|
||||
DWORD
|
||||
NTAPI
|
||||
NtUserAssociateInputContext(
|
||||
DWORD dwUnknown1,
|
||||
DWORD dwUnknown2,
|
||||
DWORD dwUnknown3);
|
||||
NtUserAssociateInputContext(HWND hWnd, HIMC hIMC, DWORD dwFlags);
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
|
|
|
@ -11,10 +11,7 @@ DBG_DEFAULT_CHANNEL(UserMisc);
|
|||
|
||||
DWORD
|
||||
APIENTRY
|
||||
NtUserAssociateInputContext(
|
||||
DWORD dwUnknown1,
|
||||
DWORD dwUnknown2,
|
||||
DWORD dwUnknown3)
|
||||
NtUserAssociateInputContext(HWND hWnd, HIMC hIMC, DWORD dwFlags)
|
||||
{
|
||||
STUB
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue