Sends a request to an application for an Active Input Method Editor (IME). Unicode implementation.
Syntax
HRESULT RequestMessageW(
HIMC hIMC,
WPARAM wParam,
LPARAM lParam,
LRESULT *plResult
);
Parameters
- hIMC
- [in] Handle to the target input context.
- wParam
- [in] WPARAM value that specifies additional message information.
- lParam
- [in] LPARAM value that specifies additional message information.
- plResult
- [out] Address of an LRESULT value that receives the result of the operation.
Return Value
Returns S_OK if successful, or an error code otherwise.
Remarks
Active IMEs must not send a WM_IME_REQUEST message to an application using SendMessage. Active IMEs should use IActiveIMMIME::RequestMessageW to send that message.
See Also