VSEB

typedef struct vseb_s {
    DWORD vseb_resp;
    WORD  vseb_b3;
    WORD  vseb_b2;
    WORD  vseb_b1;
    DWORD vseb_pszCaption;
    DWORD vseb_pszText;
} VSEB;
 

Structure that describes the system modal dialog box that the service VWIN32_SysErrorBox displays.

vseb_resp
Response. Indicates which button the user pressed. May be one of the following:
1 User selected button 1.
2 User selected button 2.
3 User selected button 3.

vseb_b1, vseb_b2, vseb_b3
The button text for each button on the dialog box. Choose from the following:
1 Button with "OK"
2 Button with "Cancel"
3 Button with "&Yes"
4 Button with "&No"
5 Button with "&Retry"
6 Button with "&Abort"
7 Button with "&Ignore
8 Button with "Close"
9 Button with "&Help"

To make one of the buttons the default, combine the value 0x8000 with one of the above values.

vseb_pszCaption
Address of a null-terminated string used for the dialog box caption title.
vseb_pszText
Address of a null-terminated string containing the message to be displayed.