X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=include%2Fwindows%2Fsyslog.h;h=41267da1c941a62182cecb669b8a78bb3d977789;hb=HEAD;hp=484cd1035280e57d36597a3873aa4fce524f1a1f;hpb=e42dfc72258c0b563a16ec36c9230287fbbcc7ae;p=sliver-openvswitch.git diff --git a/include/windows/syslog.h b/include/windows/syslog.h index 484cd1035..41267da1c 100644 --- a/include/windows/syslog.h +++ b/include/windows/syslog.h @@ -28,4 +28,24 @@ #define LOG_NDELAY 8 /* don't delay open */ #define LOG_DAEMON 24 /* system daemons */ +#define LOG_LOCAL0 (16<<3) /* reserved for local use */ +#define LOG_LOCAL1 (17<<3) /* reserved for local use */ +#define LOG_LOCAL2 (18<<3) /* reserved for local use */ +#define LOG_LOCAL3 (19<<3) /* reserved for local use */ +#define LOG_LOCAL4 (20<<3) /* reserved for local use */ +#define LOG_LOCAL5 (21<<3) /* reserved for local use */ +#define LOG_LOCAL6 (22<<3) /* reserved for local use */ +#define LOG_LOCAL7 (23<<3) /* reserved for local use */ + +static inline void +openlog(const char *ident OVS_UNUSED, int option OVS_UNUSED, + int facility OVS_UNUSED) +{ +} + +static inline void +syslog(int priority OVS_UNUSED, const char *format OVS_UNUSED, ...) +{ +} + #endif /* syslog.h */