CardReadAdapter_UserErrorCode.h 1013 B

123456789101112
  1. #ifndef _CARDREADADAPTER_USER_ERRORCODE_H
  2. #define _CARDREADADAPTER_USER_ERRORCODE_H
  3. #pragma once
  4. #define CardReadAdapter_UserErrorCode_Start 0x21b00200
  5. #define CardReadAdapter_UserErrorCode_Read_Wrong_In_Working (CardReadAdapter_UserErrorCode_Start + 1) //在"Working"状态收到了Read指令(不正常)
  6. #define CardReadAdapter_UserErrorCode_Read_Wrong_In_Failed (CardReadAdapter_UserErrorCode_Start + 2) //在"Failed"状态收到了Read指令(不正常)
  7. #define CardReadAdapter_UserErrorCode_QueryCardInfo_Wrong_In_Working (CardReadAdapter_UserErrorCode_Start + 3) //在"Working"状态收到了QueryCardInfo指令(不正常)
  8. #define CardReadAdapter_UserErrorCode_QueryCardInfo_Wrong_In_Failed (CardReadAdapter_UserErrorCode_Start + 4) //在"Failed"状态收到了QueryCardInfo指令(不正常)
  9. #define CardReadAdapter_UserErrorCode_MayBe_ThreadPool_Wrong (CardReadAdapter_UserErrorCode_Start + 5) //可能线程池抛出时序异常
  10. #endif //_CARDREADADAPTER_USER_ERRORCODE_H