windows_programming_notes.nbk: Home | Index | Next Page: Display a Web Page in a Plain C Win32 Application | Previous Page: DialogProc


 DispatchMessage

The DispatchMessage function dispatches a message to a window procedure. It is typically used to dispatch a message retrieved by the GetMessage function.

Syntax

    LRESULT DispatchMessage(
        const MSG *lpmsg
    );

Parameters

Return Value

The return value specifies the value returned by the window procedure. Although its meaning depends on the message being dispatched, the return value generally is ignored.

Remarks

The MSG structure must contain valid message values. If the lpmsg parameter points to a WM_TIMER message and the lParam parameter of the WM_TIMER message is not NULL, lParam points to a function that is called instead of the window procedure.

Note that the application is responsible for retrieving and dispatching input messages to the dialog box. Most applications use the main message loop for this. However, to permit the user to move to and to select controls by using the keyboard, the application must call IsDialogMessage. For more information, see Dialog Box Keyboard Interface.

Windows 95/98/Me: DispatchMessageW is supported by the Microsoft Layer for Unicode (MSLU). To use this, you must add certain files to your application, as outlined in Microsoft Layer for Unicode on Windows 95/98/Me Systems .

Function Information


windows_programming_notes.nbk: Home | Index | Next Page: Display a Web Page in a Plain C Win32 Application | Previous Page: DialogProc


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