error.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef __ERRORS_H__
00011 #define __ERRORS_H__
00012
00013
00014
00015
00016 #ifndef __STSTATUS_TYPE__
00017 #define __STSTATUS_TYPE__
00018 typedef int8u StStatus;
00019 #endif //__STSTATUS_TYPE__
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #define DEFINE_ERROR(symbol, value) \
00035 ST_ ## symbol = value,
00036
00037
00038 enum {
00039 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00040 #include "error-def.h"
00041 #endif //DOXYGEN_SHOULD_SKIP_THIS
00042
00043
00044
00045 ST_ERROR_CODE_COUNT
00046
00047 };
00048
00049 #undef DEFINE_ERROR
00050
00051 #endif // __ERRORS_H__
00052
00053
00054
00055
00056