windows_programming_notes.nbk: Home | Index | Next Page: WM_IME_STARTCOMPOSITION | Previous Page: WM_IME_KEYUP


 WM_IME_NOTIFY

The WM_IME_NOTIFY message is sent to an application to notify it of changes to the IME window. An application processes this message if it is responsible for managing the IME window.

A window receives this message through its WindowProc function.

    LRESULT CALLBACK WindowProc(
        HWND hwnd,       // handle to window
        WM_IME_NOTIFY,   // message to send
        WPARAM wParam,   // notification command
        LPARAM lParam    // command-specific data
    );

Parameters

Return Values

The return value depends on the command sent.

Requirements

  Windows NT/2000 or later: Requires Windows NT 4.0 or later.
  Windows 95/98/Me: Requires Windows 95 or later.
  Header: Declared in Imm.h; include Windows.h.

windows_programming_notes.nbk: Home | Index | Next Page: WM_IME_STARTCOMPOSITION | Previous Page: WM_IME_KEYUP


Notebook exported on Monday, 7 July 2008, 18:56:50 PM Eastern Daylight Time