Added ImmAssociateContextEx stub.
This commit is contained in:
parent
4ea598e068
commit
1304d45011
|
@ -254,6 +254,15 @@ HIMC WINAPI ImmAssociateContext(HWND hWnd, HIMC hIMC)
|
|||
return (HIMC)NULL;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ImmAssociateContextEx (IMM32.@)
|
||||
*/
|
||||
BOOL WINAPI ImmAssociateContextEx(HWND hWnd, HIMC hIMC, DWORD dwFlags)
|
||||
{
|
||||
FIXME("(%p, %p, %ld): stub\n", hWnd, hIMC, dwFlags);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ImmConfigureIMEA (IMM32.@)
|
||||
*/
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
@ stdcall ImmAssociateContext(long long)
|
||||
@ stdcall ImmAssociateContextEx(long long long)
|
||||
@ stdcall ImmConfigureIMEA(long long long ptr)
|
||||
@ stdcall ImmConfigureIMEW(long long long ptr)
|
||||
@ stdcall ImmCreateContext()
|
||||
|
|
Loading…
Reference in New Issue