pando_gateway.h 830 B

1234567891011121314151617181920212223242526272829303132
  1. /*******************************************************
  2. * File name: pando_gateway.h
  3. * Author:
  4. * Versions:1.0
  5. * Description:This module is the interface of the pando gateway.
  6. * History:
  7. * 1.Date:
  8. * Author:
  9. * Modification:
  10. *********************************************************/
  11. #ifndef __PANDO_GATEWAY_H__
  12. #define __PANDO_GATEWAY_H__
  13. #include "pando_types.h"
  14. typedef enum {
  15. GATEWAY_INIT = 0,
  16. GATEWAY_REGISTER,
  17. GATEWAY_LOGIN,
  18. GATEWAY_ACCESS
  19. }GATEWAY_STATUS;
  20. /******************************************************************************
  21. * FunctionName : pando_gateway_init
  22. * Description : initialize the gateway.
  23. * Parameters : none
  24. * Returns : none
  25. *******************************************************************************/
  26. void pando_gateway_init(void);
  27. #endif