| version 1.1.2.2, 2011/11/23 01:07:17 | version 1.1.2.8, 2011/11/24 15:34:17 | 
| Line 10  void mqttUnloadRTLM(int); | Line 10  void mqttUnloadRTLM(int); | 
 | inline int mqttMkDir(sl_config *); | inline int mqttMkDir(sl_config *); | 
 |  |  | 
 |  |  | 
| sqlite3 *(*mqttOpenDB)(sl_config *cfg, int modtype); | struct tagCallbacks { | 
| void (*mqttCloseDB)(sqlite3 *sql); | /* mqtt_acc.so */ | 
|  | void *(*OpenACC)(sl_config *); | 
|  | void (*CloseACC)(void *); | 
|  | int (*LoginACC)(sl_config *, void *, const char*, const char*, ...); | 
|  |  | 
|  | /* mqtt_pub.so */ | 
|  | void *(*OpenPUB)(sl_config *); | 
|  | void (*ClosePUB)(void *); | 
|  | int (*InitSessPUB)(sl_config *, void *, const char*, const char*, u_short); | 
|  | int (*FiniSessPUB)(sl_config *, void *, const char*, const char*); | 
|  | int (*ChkSessPUB)(sl_config *, void *, const char*, const char*); | 
|  |  | 
|  | /* mqtt_log.so */ | 
|  | void *(*OpenLOG)(sl_config *); | 
|  | void (*CloseLOG)(void *); | 
|  | int (*LOG)(void *, const char *, ...); | 
|  | }; | 
 |  |  | 
 |  |  | 
 | #endif | #endif |