No empty .Rs/.Re
[netbsd-mini2440.git] / external / bsd / bind / dist / lib / isc / win32 / syslog.h
blob578e562ea0f4179085392280eb1aef7012cff063
1 /* $NetBSD$ */
3 /*
4 * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (C) 2001, 2002 Internet Software Consortium.
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
20 /* Id: syslog.h,v 1.7 2007/06/19 23:47:19 tbox Exp */
22 #ifndef _SYSLOG_H
23 #define _SYSLOG_H
25 #include <stdio.h>
27 /* Constant definitions for openlog() */
28 #define LOG_PID 1
29 #define LOG_CONS 2
30 /* NT event log does not support facility level */
31 #define LOG_KERN 0
32 #define LOG_USER 0
33 #define LOG_MAIL 0
34 #define LOG_DAEMON 0
35 #define LOG_AUTH 0
36 #define LOG_SYSLOG 0
37 #define LOG_LPR 0
38 #define LOG_LOCAL0 0
39 #define LOG_LOCAL1 0
40 #define LOG_LOCAL2 0
41 #define LOG_LOCAL3 0
42 #define LOG_LOCAL4 0
43 #define LOG_LOCAL5 0
44 #define LOG_LOCAL6 0
45 #define LOG_LOCAL7 0
47 #define LOG_EMERG 0 /* system is unusable */
48 #define LOG_ALERT 1 /* action must be taken immediately */
49 #define LOG_CRIT 2 /* critical conditions */
50 #define LOG_ERR 3 /* error conditions */
51 #define LOG_WARNING 4 /* warning conditions */
52 #define LOG_NOTICE 5 /* normal but signification condition */
53 #define LOG_INFO 6 /* informational */
54 #define LOG_DEBUG 7 /* debug-level messages */
56 void
57 syslog(int level, const char *fmt, ...);
59 void
60 openlog(const char *, int, ...);
62 void
63 closelog(void);
65 void
66 ModifyLogLevel(int level);
68 void
69 InitNTLogging(FILE *, int);
71 void
72 NTReportError(const char *, const char *);
74 * Include the event codes required for logging.
76 #include <isc/bindevt.h>
78 #endif