File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / inc / rtlm.h
Revision 1.1.2.3: download - view: text, annotated - select for diffs - revision graph
Wed Nov 23 08:50:03 2011 UTC (12 years, 7 months ago) by misho
Branches: mqtt1_0
rework again RTLM management
add rtl module for log

    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: 
   10: inline int mqttMkDir(sl_config *);
   11: 
   12: 
   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 *);
   19: 
   20: 
   21: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>