| 12345678910111213141516171819202122232425 |
- #ifndef __mqttClientTask__
- #define __mqttClientTask__
- #include "RyanMqttClient.h"
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- // 定义枚举类型
- // 定义结构体类型
- /* extern variables-----------------------------------------------------------*/
- extern void RyanMqttThread(void *argument);
- extern void RyanMqttEventMachine(RyanMqttClient_t *client, RyanMqttEventId_e eventId, void *eventData);
- #ifdef __cplusplus
- }
- #endif
- #endif
|