include/df/err.hpp

00001 //Exception signal definitions
00002 //Exceptions 0x00 thru 0x7f are reserved by DF (for future usage)
00003 //Exceptions 0x80 thru 0xff are free for programmer usage.
00004 
00005 #define ERR_FILEIO    0x00   //File I/O operation failed
00006 #define ERR_BADARGS   0x01   //Bad arguments passed to function
00007 #define ERR_INVALID   0x02   //Invalid handle passed to function
00008 #define ERR_NOMEMORY  0x03   //Insufficent resources
00009 #define ERR_ASSERT    0x04   //Assertion failed 
00010 //...Reserved...
00011 #define ERR_BUG       0x7f   //DigiForce Bug (non-implemented function, a test, etc.)
00012 
00013 #define ERR_USER      0x80   //free for programmer usage
00014 #define ERR_LAST      0xff   //last available exception

Generated on Mon Mar 5 09:49:14 2007 for DigiForce by  doxygen 1.4.7