wm_webserver.h 841 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /**
  2. * @file wm_webserver.h
  3. *
  4. * @brief WEB SERVER
  5. *
  6. * @author winnermicro
  7. *
  8. * Copyright (c) 2015 Winner Microelectronics Co., Ltd.
  9. */
  10. #ifndef __WEBSERVER_H__
  11. #define __WEBSERVER_H__
  12. /**
  13. * @defgroup APP_APIs APP APIs
  14. * @brief APP APIs
  15. */
  16. /**
  17. * @addtogroup APP_APIs
  18. * @{
  19. */
  20. /**
  21. * @defgroup WEB_APIs WEB APIs
  22. * @brief WEB server APIs
  23. */
  24. /**
  25. * @addtogroup WEB_APIs
  26. * @{
  27. */
  28. /**
  29. * @brief This function is used to start WEB SERVER service
  30. *
  31. * @param[in] None
  32. *
  33. * @return None
  34. *
  35. * @note None
  36. */
  37. void tls_webserver_init(void);
  38. /**
  39. * @brief This function is used to deinit WEB SERVER service
  40. *
  41. * @param[in] None
  42. *
  43. * @return None
  44. *
  45. * @note None
  46. */
  47. void tls_webserver_deinit(void);
  48. /**
  49. * @}
  50. */
  51. /**
  52. * @}
  53. */
  54. #endif /*__WEBSERVER_H__*/