WM_INPUTLANGCHANGE

The WM_INPUTLANGCHANGE message is sent to the topmost affected window after an application's input language has been changed. You should make any application-specific settings and pass the message to the DefWindowProc function, which passes the message to all first-level child windows. These child windows can pass the message to DefWindowProc to have it pass the message to their child windows, and so on.

WM_INPUTLANGCHANGE
charset = wParam;
hkl = (HKL) lParam; 
 

Parameters

charset
Specifies the character set of the new keyboard layout.
hkl
Handle to the new keyboard layout.

Return Values

An application should return nonzero if it processes this message.

QuickInfo

  Windows NT: Requires version 4.0 or later.
  Windows: Requires Windows 95 or later.
  Windows CE: Unsupported.
  Header: Declared in winuser.h.

See Also

Windows Overview, Window Messages, DefWindowProc, WM_INPUTLANGCHANGEREQUEST