WM_IME_REQUEST message
Sent to an application to provide commands and request information. A window receives this message through its WindowProc function.
LRESULT CALLBACK WindowProc(
HWND hwnd,
WM_IME_REQUEST,
WPARAM wParam,
LPARAM lParam
);
Parameters
-
hwnd
-
A handle to window.
-
wParam
-
Command. This parameter can have one of the following values:
-
lParam
-
Command-specific data. For more information, see the description for each command.
Return value
Returns a command-specific value.
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
Minimum supported server |
Windows 2000 Server [desktop apps only] |
Header |
|
See also