WM_IME_ENDCOMPOSITION message
Sent to an application when the IME ends composition. A window receives this message through its WindowProc function.
LRESULT CALLBACK WindowProc(
HWND hwnd,
WM_IME_ENDCOMPOSITION,
WPARAM wParam,
LPARAM lParam
);
Parameters
This message has no parameters.
Return value
This message has no return value.
Remarks
An application should process this message if it displays composition characters itself.
If the application has created an IME window, it should pass this message to that window. The DefWindowProc function processes this message by passing it to the default IME window.
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
Minimum supported server |
Windows 2000 Server [desktop apps only] |
Header |
|
See also