123456789101112131415161718192021222324252627282930 |
- #ifndef __RVC_EVENT_CODE_H
- #define __RVC_EVENT_CODE_H
- #include "SimpleString.h"
- inline CSimpleStringA DWORD2Hex(DWORD cur)
- {
- return CSimpleStringA::Format("%X", cur);
- }
- #define ERR_ENTITY_EXCEPTION "QLR040200003" //实体crash
- #define ERR_SPSHELL_EXCETION "QLR040200002" //框架crash
- #define ERR_ENTITY_ASSERT 0xFFF00003 //实体Assert
- #define ERR_SPSHELL_COPY_CEN 0xFFF00101 //拷贝集中配置
- #define RTAERR_SPSHELL_REPEATPROCESS "RTA0001" //重复进程
- #define RTAERR_SPSHELL_NOPRIVILEGE "RTA0002" //无权限
- #define RTAERR_SPSHELL_APPINITERR "RTA0003" //app_init出现异常
- #define RTAERR_ENTITY_EXCEPTION "RTA0011" //实体crash
- #define RTAERR_SPSHELL_EXCEPTION "RTA0012" //框架crash
- #define RTAERR_SPHOST_IOM_FAILED "RTA0021" //iom create failed
- #endif
|