PinPad_UserErrorCode.h 833 B

1234567891011121314
  1. #ifndef _PINPAD_USER_ERROR_CODE_H
  2. #define _PINPAD_USER_ERROR_CODE_H
  3. #pragma once
  4. #define PinPad_UserErrorCode_Start 0x20600200
  5. //#define PinPad_UserErrorCode_Open_RootCfg_Failed (PinPad_UserErrorCode_Start + 1) //打开Root.ini失败
  6. //#define PinPad_UserErrorCode_Open_RunCfgFile_Failed (PinPad_UserErrorCode_Start + 2) //打开运行时配置失败
  7. //#define PinPad_UserErrorCode_Write_RunCfgFile_Failed (PinPad_UserErrorCode_Start + 3) //写运行时配置失败
  8. #define PinPad_UserErrorCode_PinPad_Instance_Is_Null (PinPad_UserErrorCode_Start + 4) //pinpad 实例为null
  9. #define PinPad_UserErrorCode_Create_PinPad_Instance_Failed (PinPad_UserErrorCode_Start + 5) //创建pinpad实例失败
  10. //#define PinPad_UserErrorCode_Get_DevAdapter_Path_Failed (PinPad_UserErrorCode_Start + 6) //获取dll适配器路径失败
  11. #endif //_PINPAD_USER_ERROR_CODE_H