Added stub for ImmDisableIME.

This commit is contained in:
Ken Belleau 2004-02-03 00:12:03 +00:00 committed by Alexandre Julliard
parent 96bd8ea7d5
commit d329f1beb2
2 changed files with 10 additions and 0 deletions

View File

@ -324,6 +324,15 @@ BOOL WINAPI ImmDestroyContext(HIMC hIMC)
return TRUE; return TRUE;
} }
/***********************************************************************
* ImmDisableIME (IMM32.@)
*/
BOOL WINAPI ImmDisableIME(DWORD idThread)
{
FIXME("(%ld): stub\n", idThread);
return TRUE;
}
/*********************************************************************** /***********************************************************************
* ImmEnumRegisterWordA (IMM32.@) * ImmEnumRegisterWordA (IMM32.@)
*/ */

View File

@ -7,6 +7,7 @@
@ stdcall ImmDestroyContext(long) @ stdcall ImmDestroyContext(long)
@ stub ImmDestroyIMCC @ stub ImmDestroyIMCC
@ stub ImmDestroySoftKeyboard @ stub ImmDestroySoftKeyboard
@ stdcall ImmDisableIME(long)
@ stdcall ImmEnumRegisterWordA(long ptr str long str ptr) @ stdcall ImmEnumRegisterWordA(long ptr str long str ptr)
@ stdcall ImmEnumRegisterWordW(long ptr wstr long wstr ptr) @ stdcall ImmEnumRegisterWordW(long ptr wstr long wstr ptr)
@ stdcall ImmEscapeA(long long long ptr) @ stdcall ImmEscapeA(long long long ptr)