诸暨麻将添加redis
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 line
728 B

  1. #ifndef CONTROL_PACKET_HEAD_FILE
  2. #define CONTROL_PACKET_HEAD_FILE
  3. //////////////////////////////////////////////////////////////////////////////////
  4. //事件结果
  5. #define ER_FAILURE 0 //失败标志
  6. #define ER_SUCCESS 1 //成功标志
  7. //////////////////////////////////////////////////////////////////////////////////
  8. //界面数据包
  9. //////////////////////////////////////////////////////////////////////////////////
  10. //控制数据包
  11. //////////////////////////////////////////////////////////////////////////////////
  12. //控制结果
  13. struct CP_ControlResult
  14. {
  15. BYTE cbSuccess; //成功标志
  16. };
  17. //////////////////////////////////////////////////////////////////////////////////
  18. #endif