12345678910111213141516171819202122 |
- /**
- * @Author: 李建
- * @Date: 12/17/2023, 8:54:32 PM
- * @LastEditors: 李建
- * @LastEditTime: 12/17/2023, 8:54:32 PM
- * Description: 网关组件
- * Copyright: Copyright (©)}) 2023 永续绿建. All rights reserved.
- */
- #ifndef __GATEWAY_H__
- #define __GATEWAY_H__
- // gateway status enum
- typedef enum {
- GATEWAY_INIT = 0,
- GATEWAY_REGISTER,
- GATEWAY_LOGIN,
- GATEWAY_ACCESS,
- } GATEWAY_STATUS;
- void yxlj_gateway_init();
- #endif
|