windows_programming_notes.nbk: Home | Index | Next Page: win32 msgs: WM_IME_SELECT | Previous Page: win32 msgs: WM_IME_ENDCOMPOSITION


 win32 msgs: WM_IME_REQUEST

The WM_IME_REQUEST message provides a group of commands to request information from an application.

A window receives this message through its WindowProc function.

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

Parameters

Return Values

Returns a request-specific value. For more information, see the description for each command.

Requirements

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

windows_programming_notes.nbk: Home | Index | Next Page: win32 msgs: WM_IME_SELECT | Previous Page: win32 msgs: WM_IME_ENDCOMPOSITION


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