| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /**
- * @file wm_webserver.h
- *
- * @brief WEB SERVER
- *
- * @author winnermicro
- *
- * Copyright (c) 2015 Winner Microelectronics Co., Ltd.
- */
- #ifndef __WEBSERVER_H__
- #define __WEBSERVER_H__
- /**
- * @defgroup APP_APIs APP APIs
- * @brief APP APIs
- */
- /**
- * @addtogroup APP_APIs
- * @{
- */
- /**
- * @defgroup WEB_APIs WEB APIs
- * @brief WEB server APIs
- */
- /**
- * @addtogroup WEB_APIs
- * @{
- */
- /**
- * @brief This function is used to start WEB SERVER service
- *
- * @param[in] None
- *
- * @return None
- *
- * @note None
- */
- void tls_webserver_init(void);
- /**
- * @brief This function is used to deinit WEB SERVER service
- *
- * @param[in] None
- *
- * @return None
- *
- * @note None
- */
- void tls_webserver_deinit(void);
- /**
- * @}
- */
- /**
- * @}
- */
- #endif /*__WEBSERVER_H__*/
|