dtcm: Coverity 88107
[oweals/cde.git] / cde / programs / dtprintinfo / dtprintinfomsg.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 /* $XConsortium: dtprintinfomsg.h /main/3 1995/11/06 09:33:49 rswiston $ */
24 #ifndef DTPRINTINFOMSG_H
25 #define DTPRINTINFOMSG_H
26
27 /*
28  * if __cplusplus is defined, the system header files take care
29  * of themselves and putting this "extern C" here causes inconsistent linkage
30  * specifications.
31  */
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 #include <nl_types.h> 
37 #include <locale.h> 
38
39 #include "dtprintinfo_msg.h"
40 #include "dtprintinfo_cat.h"
41
42 extern nl_catd dtprintinfo_cat;
43
44 #ifdef hpux
45 extern char *Catgets(nl_catd catd, int set_num, int msg_num, char *s);
46 #define MESSAGE(msg) \
47    Catgets(dtprintinfo_cat,DTPRINTER_SET,msg,TXT_DTPRINTER_SET_ ## msg)
48 #else
49 #define MESSAGE(msg) \
50    catgets(dtprintinfo_cat,DTPRINTER_SET,msg,TXT_DTPRINTER_SET_ ## msg)
51 #endif
52
53 #ifdef __cplusplus
54 }  /* Close scope of 'extern "C"' declaration which encloses file. */
55 #endif
56
57 #endif /* DTPRINTINFOMSG_H */