windows_programming_notes.nbk: Home | Index | Next Page: NM_CLICK (list view) | Previous Page: MSG


 MSGBOXPARAMS

The MSGBOXPARAMS structure contains information used to display a message box. The MessageBoxIndirect function uses this structure.

Syntax

    typedef struct {
        UINT cbSize;
        HWND hwndOwner;
        HINSTANCE hInstance;
        LPCTSTR lpszText;
        LPCTSTR lpszCaption;
        DWORD dwStyle;
        LPCTSTR lpszIcon;
        DWORD_PTR dwContextHelpId;
        MSGBOXCALLBACK lpfnMsgBoxCallback;
        DWORD dwLanguageId;
    } MSGBOXPARAMS, *PMSGBOXPARAMS;

Members

Structure Information


windows_programming_notes.nbk: Home | Index | Next Page: NM_CLICK (list view) | Previous Page: MSG


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