French translation: copy -> copie.
[git/dscho.git] / compat / win32 / syslog.h
blob70daa7c08b8d7acb46a1633f30961faef9ab50f3
1 #ifndef SYSLOG_H
2 #define SYSLOG_H
4 #define LOG_PID 0x01
6 #define LOG_EMERG 0
7 #define LOG_ALERT 1
8 #define LOG_CRIT 2
9 #define LOG_ERR 3
10 #define LOG_WARNING 4
11 #define LOG_NOTICE 5
12 #define LOG_INFO 6
13 #define LOG_DEBUG 7
15 #define LOG_DAEMON (3<<3)
17 void openlog(const char *ident, int logopt, int facility);
18 void syslog(int priority, const char *fmt, ...);
20 #endif /* SYSLOG_H */