imm32: Add stub and header of ImmRequestMessage.
This commit is contained in:
parent
3229c3de92
commit
f9316b1877
|
@ -1572,6 +1572,26 @@ BOOL WINAPI ImmReleaseContext(HWND hWnd, HIMC hIMC)
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ImmRequestMessageA(IMM32.@)
|
||||
*/
|
||||
LRESULT WINAPI ImmRequestMessageA(HIMC hIMC, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
FIXME("(%p %ld %ld): stub\n", hIMC, wParam, wParam);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ImmRequestMessageW(IMM32.@)
|
||||
*/
|
||||
LRESULT WINAPI ImmRequestMessageW(HIMC hIMC, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
FIXME("(%p %ld %ld): stub\n", hIMC, wParam, wParam);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ImmSetCandidateWindow (IMM32.@)
|
||||
*/
|
||||
|
|
|
@ -79,8 +79,8 @@
|
|||
@ stdcall ImmRegisterWordA(long str long str)
|
||||
@ stdcall ImmRegisterWordW(long wstr long wstr)
|
||||
@ stdcall ImmReleaseContext(long long)
|
||||
@ stub ImmRequestMessageA
|
||||
@ stub ImmRequestMessageW
|
||||
@ stdcall ImmRequestMessageA(ptr long long)
|
||||
@ stdcall ImmRequestMessageW(ptr long long)
|
||||
@ stub ImmSendIMEMessageExA
|
||||
@ stub ImmSendIMEMessageExW
|
||||
@ stub ImmSendMessageToActiveDefImeWndW
|
||||
|
|
|
@ -141,6 +141,9 @@ DWORD WINAPI ImmGetIMCCSize(HIMCC);
|
|||
#define NI_IMEMENUSELECTED 0x0018
|
||||
|
||||
BOOL WINAPI ImmGenerateMessage(HIMC);
|
||||
LRESULT WINAPI ImmRequestMessageA(HIMC, WPARAM, LPARAM);
|
||||
LRESULT WINAPI ImmRequestMessageW(HIMC, WPARAM, LPARAM);
|
||||
#define ImmRequestMessage WINELIB_NAME_AW(ImmRequestMessage);
|
||||
|
||||
BOOL WINAPI ImeInquire(LPIMEINFO, LPWSTR, LPCWSTR lpszOptions);
|
||||
BOOL WINAPI ImeConfigure (HKL, HWND, DWORD, LPVOID);
|
||||
|
|
|
@ -394,6 +394,8 @@ typedef struct _tagCOMPOSITIONFORM
|
|||
#define IMR_COMPOSITIONFONT 0x0003
|
||||
#define IMR_RECONVERTSTRING 0x0004
|
||||
#define IMR_CONFIRMRECONVERTSTRING 0x0005
|
||||
#define IMR_QUERYCHARPOSITION 0x0006
|
||||
#define IMR_DOCUMENTFEED 0x0007
|
||||
|
||||
|
||||
/* error code of ImmGetCompositionString */
|
||||
|
|
Loading…
Reference in New Issue