Fix warnings on FreeBSD
[oweals/cde.git] / cde / lib / DtSvc / DtUtil2 / MsgLog.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these libraries and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* 
24  * (c) Copyright 1995 Digital Equipment Corporation.
25  * (c) Copyright 1995 Hewlett-Packard Company.
26  * (c) Copyright 1995 International Business Machines Corp.
27  * (c) Copyright 1995 Sun Microsystems, Inc.
28  * (c) Copyright 1995 Novell, Inc. 
29  * (c) Copyright 1995 FUJITSU LIMITED.
30  * (c) Copyright 1995 Hitachi.
31  *
32  * MsgLog.h - Public header file for the Message Logging Service
33  *
34  * $XConsortium: MsgLog.h /main/5 1995/07/14 13:22:57 drk $
35  *
36  */
37
38 #ifndef _Dt_MsgLog_h
39 #define _Dt_MsgLog_h
40
41 #include <stdio.h>              /* needed for FILE */
42
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
46
47 # include <stdarg.h>
48
49 /*
50  * Type declarations
51  */
52 typedef enum {
53         DtMsgLogInformation,
54         DtMsgLogStderr,
55         DtMsgLogDebug,
56         DtMsgLogWarning,
57         DtMsgLogError
58 } DtMsgLogType;
59
60 typedef void (*DtMsgLogHandler) (
61         const char              * program_name,
62         DtMsgLogType            msg_type,
63         const char              * format,
64         va_list                 args );
65
66 /*
67  * Function declarations
68  */
69 extern void DtMsgLogMessage (
70         const char              * program_name,
71         DtMsgLogType            msg_type,
72         const char              * format,
73         ... );
74
75 extern DtMsgLogHandler DtMsgLogSetHandler (
76         DtMsgLogHandler         handler );
77
78 extern FILE * DtMsgLogOpenFile (
79         const char              * type,
80         char                    ** filename_return);    /* MODIFIED */
81
82 #ifdef __cplusplus
83 }
84 #endif
85
86 #endif /* _Dt_MsgLog_h */