Added ImmAssociateContextEx stub.

This commit is contained in:
Jesse Allen 2004-03-04 06:06:44 +00:00 committed by Alexandre Julliard
parent 4ea598e068
commit 1304d45011
2 changed files with 10 additions and 0 deletions

View File

@ -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.@)
*/

View File

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