RVCEventCode.h 807 B

123456789101112131415161718192021222324252627282930
  1. #ifndef __RVC_EVENT_CODE_H
  2. #define __RVC_EVENT_CODE_H
  3. #include "SimpleString.h"
  4. inline CSimpleStringA DWORD2Hex(DWORD cur)
  5. {
  6. return CSimpleStringA::Format("%X", cur);
  7. }
  8. #define ERR_ENTITY_EXCEPTION "QLR040200003" //实体crash
  9. #define ERR_SPSHELL_EXCETION "QLR040200002" //框架crash
  10. #define ERR_ENTITY_ASSERT 0xFFF00003 //实体Assert
  11. #define ERR_SPSHELL_COPY_CEN 0xFFF00101 //拷贝集中配置
  12. #define RTAERR_SPSHELL_REPEATPROCESS "RTA0001" //重复进程
  13. #define RTAERR_SPSHELL_NOPRIVILEGE "RTA0002" //无权限
  14. #define RTAERR_SPSHELL_APPINITERR "RTA0003" //app_init出现异常
  15. #define RTAERR_ENTITY_EXCEPTION "RTA0011" //实体crash
  16. #define RTAERR_SPSHELL_EXCEPTION "RTA0012" //框架crash
  17. #define RTAERR_SPHOST_IOM_FAILED "RTA0021" //iom create failed
  18. #endif