Link with C++ linker
[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 librararies 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 #if !defined(USL) && !defined(__uxp__)
28 /*
29  * if __cplusplus is defined, the system header files take care
30  * of themselves and putting this "extern C" here causes inconsistent linkage
31  * specifications.
32  */
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36 #endif /* ! USL */
37
38 #include <nl_types.h> 
39 #include <locale.h> 
40
41 #if defined(USL) || defined(__uxp__)
42 #ifdef __cplusplus
43 extern "C" {
44 #endif
45 #endif /* USL */
46
47 #include "dtprintinfo_msg.h"
48 #include "dtprintinfo_cat.h"
49
50 extern nl_catd dtprintinfo_cat;
51
52 #ifdef hpux
53 extern char *Catgets(nl_catd catd, int set_num, int msg_num, char *s);
54 #define MESSAGE(msg) \
55    Catgets(dtprintinfo_cat,DTPRINTER_SET,msg,TXT_DTPRINTER_SET_ ## msg)
56 #else
57 #define MESSAGE(msg) \
58    catgets(dtprintinfo_cat,DTPRINTER_SET,msg,TXT_DTPRINTER_SET_ ## msg)
59 #endif
60
61 #ifdef __cplusplus
62 }  /* Close scope of 'extern "C"' declaration which encloses file. */
63 #endif
64
65 #endif /* DTPRINTINFOMSG_H */