#include <errors.h>
Public Member Functions | |
ErrorInfo () | |
Initialises the fields of the error info structure to sensible defaults. | |
Public Attributes | |
UINT32 | ErrorMsg |
UINT32 | Title |
UINT32 | Button [4] |
UINT32 | OK |
UINT32 | Cancel |
UINT32 | Help |
Definition at line 145 of file errors.h.
|
Initialises the fields of the error info structure to sensible defaults.
Definition at line 165 of file errors.cpp. 00166 { 00167 ErrorMsg = 0; 00168 Title = 0; 00169 Button[0] = _R(IDS_OK); 00170 Button[1] = 0; 00171 Button[2] = 0; 00172 Button[3] = 0; 00173 OK = 1; 00174 Cancel = 2; 00175 Help = 0; // by default there is no help button 00176 }
|
|
|
|
|
|
|
|
|
|
|
|
|