Annotation of mqtt/inc/rtlm.h, revision 1.1.2.3
1.1.2.1 misho 1: #ifndef __RTLM_H
2: #define __RTLM_H
3:
4:
5: void mqttLog(const char *, ...);
6:
7: void *mqttLoadRTLM(sl_config*, int);
8: void mqttUnloadRTLM(int);
9:
1.1.2.2 misho 10: inline int mqttMkDir(sl_config *);
11:
12:
1.1.2.3 ! misho 13: void *(*mqttOpenACC)(sl_config *);
! 14: void (*mqttCloseACC)(void *);
! 15: void *(*mqttOpenPUB)(sl_config *);
! 16: void (*mqttClosePUB)(void *);
! 17: void *(*mqttOpenLOG)(sl_config *);
! 18: void (*mqttCloseLOG)(void *);
1.1.2.1 misho 19:
20:
21: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>