Platform SDK: International Features

ImmIsUIMessage

The ImmIsUIMessage function checks for messages intended for the IME window and sends those messages to the specified window.

BOOL ImmIsUIMessage(
  HWND hWndIME,   
  UINT msg,       
  WPARAM wParam,  
  LPARAM lParam   
);

Parameters

hWndIME
[in] Handle to a window belonging to the IME window class.
msg
[in] Specifies the message to be checked.
wParam
[in] Message-specific parameter.
lParam
[in] Message-specific parameter.

Return Values

If the message is processed by the IME window, the return value is a nonzero value.

If the message is not processed by the IME window, the return value is zero.

Remarks

An application typically uses this function to display any composition string or candidate list specified by IME. If hWndIME is NULL, the function checks whether the message is a user interface message.

Requirements

  Windows NT/2000: Requires Windows NT 4.0 or later.
  Windows 95/98: Requires Windows 95 or later.
  Header: Declared in Imm.h.
  Library: Use Imm32.lib.
  Unicode: Implemented as Unicode and ANSI versions on Windows NT/2000.

See Also

Input Method Editor Overview, Input Method Editor Functions