gateway.h 443 B

12345678910111213141516171819202122
  1. /**
  2. * @Author: 李建
  3. * @Date: 12/17/2023, 8:54:32 PM
  4. * @LastEditors: 李建
  5. * @LastEditTime: 12/17/2023, 8:54:32 PM
  6. * Description: 网关组件
  7. * Copyright: Copyright (©)}) 2023 永续绿建. All rights reserved.
  8. */
  9. #ifndef __GATEWAY_H__
  10. #define __GATEWAY_H__
  11. // gateway status enum
  12. typedef enum {
  13. GATEWAY_INIT = 0,
  14. GATEWAY_REGISTER,
  15. GATEWAY_LOGIN,
  16. GATEWAY_ACCESS,
  17. } GATEWAY_STATUS;
  18. void yxlj_gateway_init();
  19. #endif