Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- #ifndef CONTROL_PACKET_HEAD_FILE
- #define CONTROL_PACKET_HEAD_FILE
-
- //////////////////////////////////////////////////////////////////////////////////
-
- //事件结果
- #define ER_FAILURE 0 //失败标志
- #define ER_SUCCESS 1 //成功标志
-
- //////////////////////////////////////////////////////////////////////////////////
- //界面数据包
-
- #define UI_CORRESPOND_RESULT 1 //协调结果
- #define UI_SERVICE_CONFIG_RESULT 2 //配置结果
-
- //////////////////////////////////////////////////////////////////////////////////
- //控制数据包
-
- #define CT_CONNECT_CORRESPOND 100 //连接协调
- #define CT_LOAD_SERVICE_CONFIG 101 //加载配置
-
- //////////////////////////////////////////////////////////////////////////////////
-
- //控制结果
- struct CP_ControlResult
- {
- BYTE cbSuccess; //成功标志
- };
-
- //////////////////////////////////////////////////////////////////////////////////
-
- #endif
|