|
version 1.1.2.3, 2011/11/23 08:50:03
|
version 1.1.2.4, 2011/11/24 00:08:55
|
|
Line 10 void mqttUnloadRTLM(int);
|
Line 10 void mqttUnloadRTLM(int);
|
| inline int mqttMkDir(sl_config *); |
inline int mqttMkDir(sl_config *); |
| |
|
| |
|
| void *(*mqttOpenACC)(sl_config *); | struct tagCallbacks { |
| void (*mqttCloseACC)(void *); | /* mqtt_acc.so */ |
| void *(*mqttOpenPUB)(sl_config *); | void *(*OpenACC)(sl_config *); |
| void (*mqttClosePUB)(void *); | void (*CloseACC)(void *); |
| void *(*mqttOpenLOG)(sl_config *); | |
| void (*mqttCloseLOG)(void *); | /* mqtt_pub.so */ |
| | void *(*OpenPUB)(sl_config *); |
| | void (*ClosePUB)(void *); |
| | |
| | /* mqtt_log.so */ |
| | void *(*OpenLOG)(sl_config *); |
| | void (*CloseLOG)(void *); |
| | int (*LOG)(void *, const char *, ...); |
| | }; |
| |
|
| |
|
| #endif |
#endif |