Changeset 2636 in orxonox.OLD for orxonox/trunk/src/error.h
- Timestamp:
- Oct 25, 2004, 12:48:39 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/error.h
r2551 r2636 22 22 */ 23 23 24 24 // this are the two undefined error nr. Don't use them ... 25 25 #define ERROR -1 26 26 #define NO_ERROR 0 27 28 /*! 29 \brief Error Definitions: 30 31 Error Classes: 32 0xx application framework codes 33 1xx graphics codes 34 2xx file/FS codes 35 3xx network codes 36 4xx general codes 37 38 Error Specifier 1: 39 x0x action finsished as desired 40 x1x initialisation error 41 x2x execution error 42 x3x uninitialisation error 43 44 Error Specifier 2: 45 xx0 no further informations 46 xx1 only a warning - feel free to ignore, the program will proceed 47 xx2 this could lead unexpected behaviour 48 xx3 this is a fatal error - you are invited to quit the program - panic! 49 */ 50 51 typedef struct 52 { 53 int code; 54 char* message; 55 char* location; 56 } Error;
Note: See TracChangeset
for help on using the changeset viewer.