1 #ifndef	_LDDSTUB_MSG_DOT_H
2 #define	_LDDSTUB_MSG_DOT_H
3 
4 #include <sgsmsg.h>	/* Msg typedef */
5 
6 #ifndef	__lint
7 
8 #define	MSG_SGS_LOCAL_ARRAY	__sgs_msg_libconv_lddstub
9 
10 extern	const char	__sgs_msg_libconv_lddstub[];
11 
12 #define	MSG_ORIG_STRTAB(_x, _s)	&_s[_x]
13 
14 #define	MSG_ORIG(x)	MSG_ORIG_STRTAB(x, __sgs_msg_libconv_lddstub)
15 
16 extern	const char *	_sgs_msg_libconv_lddstub(Msg);
17 
18 #define	MSG_INTL(x)	_sgs_msg_libconv_lddstub(x)
19 
20 
21 #define	MSG_ORG_32LDD_32STUB	4
22 #define	MSG_ORG_32LDD_32STUB_SIZE	15
23 
24 #define	MSG_ORG_32LDD_64STUB	23
25 #define	MSG_ORG_32LDD_64STUB_SIZE	18
26 
27 #define	MSG_ORG_64LDD_32STUB	1
28 #define	MSG_ORG_64LDD_32STUB_SIZE	18
29 
30 #define	MSG_ORG_64LDD_64STUB	20
31 #define	MSG_ORG_64LDD_64STUB_SIZE	21
32 
33 #define	MSG_PTH_LDDSTUB	42
34 #define	MSG_PTH_LDDSTUB_SIZE	16
35 
36 #define	MSG_PTH_LDDSTUB_64	59
37 #define	MSG_PTH_LDDSTUB_64_SIZE	19
38 
39 #else	/* __lint */
40 
41 extern	const char *	_sgs_msg_libconv_lddstub(Msg);
42 
43 #ifndef MSG_SGS_LOCAL_ARRAY
44 #define	MSG_SGS_LOCAL_ARRAY	""
45 #endif
46 
47 extern	const char	__sgs_msg_libconv_lddstub[];
48 
49 #define MSG_ORIG_STRTAB(_x, _s)	_x
50 #define MSG_ORIG(x)	x
51 #define MSG_INTL(x)	x
52 
53 #ifndef LINTSUP_SUPPRESS_STRINGS
54 
55 #define	MSG_ORG_32LDD_32STUB	"/../lib/lddstub"
56 #define	MSG_ORG_32LDD_32STUB_SIZE	15
57 
58 #define	MSG_ORG_32LDD_64STUB	"/../lib/64/lddstub"
59 #define	MSG_ORG_32LDD_64STUB_SIZE	18
60 
61 #define	MSG_ORG_64LDD_32STUB	"/../../lib/lddstub"
62 #define	MSG_ORG_64LDD_32STUB_SIZE	18
63 
64 #define	MSG_ORG_64LDD_64STUB	"/../../lib/64/lddstub"
65 #define	MSG_ORG_64LDD_64STUB_SIZE	21
66 
67 #define	MSG_PTH_LDDSTUB	"/usr/lib/lddstub"
68 #define	MSG_PTH_LDDSTUB_SIZE	16
69 
70 #define	MSG_PTH_LDDSTUB_64	"/usr/lib/64/lddstub"
71 #define	MSG_PTH_LDDSTUB_64_SIZE	19
72 
73 #endif	/* LINTSUP_SUPPRESS_STRINGS */
74 
75 #endif	/* __lint */
76 
77 #endif
78