1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- @file
- mqtt_demo.h
- @brief
- This file provides the definitions for datacall demo, and declares the
- API functions.
- */
- /*============================================================================
- Copyright (c) 2020 Quectel Wireless Solution, Co., Ltd. All Rights Reserved.
- Quectel Wireless Solution Proprietary and Confidential.
- =============================================================================*/
- /*===========================================================================
- EDIT HISTORY FOR MODULE
- This section contains comments describing changes made to the module.
- Notice that changes are listed in reverse chronological order.
- WHEN WHO WHAT, WHERE, WHY
- ---------- ------------ ----------------------------------------------------
- =============================================================================*/
- #ifndef WEBSOCKET_DEMO_H
- #define WEBSOCKET_DEMO_H
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
-
- /*========================================================================
- * function Definition
- *========================================================================*/
- int ql_websocket_app_init(void);
-
- #ifdef __cplusplus
- }/*"C" */
- #endif
-
- #endif /*WEBSOCKET_DEMO_H*/
|