Added ImmDisableIME stub.
This commit is contained in:
parent
08af06c183
commit
231f2594d2
|
@ -50,6 +50,17 @@ BOOL WINAPI ImmConfigureIMEW(
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ImmDisableIME (IMM32.@)
|
||||
*/
|
||||
BOOL WINAPI ImmDisableIME(
|
||||
DWORD idThread)
|
||||
{
|
||||
FIXME("(idThread %lu): stub\n", idThread);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ImmEscapeA (IMM32.@)
|
||||
*/
|
||||
|
|
|
@ -22,7 +22,7 @@ debug_channels (imm)
|
|||
@ stdcall ImmDestroyContext(long) ImmDestroyContext
|
||||
@ stdcall ImmDestroyIMCC(long) ImmDestroyIMCC
|
||||
@ stdcall ImmDestroySoftKeyboard(long) ImmDestroySoftKeyboard
|
||||
@ stub ImmDisableIME
|
||||
@ stdcall ImmDisableIME(long) ImmDisableIME
|
||||
@ stub ImmEnumInputContext
|
||||
@ stdcall ImmEnumRegisterWordA(long ptr str long str ptr) ImmEnumRegisterWordA
|
||||
@ stdcall ImmEnumRegisterWordW(long ptr wstr long wstr ptr) ImmEnumRegisterWordW
|
||||
|
|
|
@ -468,6 +468,7 @@ BOOL WINAPI ImmConfigureIMEW(HKL, HWND, DWORD, LPVOID);
|
|||
#define ImmConfigureIME WINELIB_NAME_AW(ImmConfigureIME)
|
||||
HIMC WINAPI ImmCreateContext();
|
||||
BOOL WINAPI ImmDestroyContext(HIMC hIMC);
|
||||
BOOL WINAPI ImmDisableIME(DWORD idThread);
|
||||
UINT WINAPI ImmEnumRegisterWordA(HKL, REGISTERWORDENUMPROCA, LPCSTR, DWORD, LPCSTR, LPVOID);
|
||||
UINT WINAPI ImmEnumRegisterWordW(HKL, REGISTERWORDENUMPROCW, LPCWSTR, DWORD, LPCWSTR, LPVOID);
|
||||
#define ImmEnumRegisterWord WINELIB_NAME_AW(ImmEnumRegisterWord)
|
||||
|
|
Loading…
Reference in New Issue