1 #ifndef _GROUP_MSG_DOT_H 2 #define _GROUP_MSG_DOT_H 3 4 #include <sgsmsg.h> /* Msg typedef */ 5 6 #ifndef __lint 7 8 #define MSG_SGS_LOCAL_ARRAY __sgs_msg_libconv_group 9 10 extern const char __sgs_msg_libconv_group[]; 11 12 #define MSG_ORIG_STRTAB(_x, _s) &_s[_x] 13 14 #define MSG_ORIG(x) MSG_ORIG_STRTAB(x, __sgs_msg_libconv_group) 15 16 extern const char * _sgs_msg_libconv_group(Msg); 17 18 #define MSG_INTL(x) _sgs_msg_libconv_group(x) 19 20 21 #define MSG_GPH_PUBLIC 1 22 #define MSG_GPH_PUBLIC_SIZE 10 23 24 #define MSG_GPH_PRIVATE 12 25 #define MSG_GPH_PRIVATE_SIZE 11 26 27 #define MSG_GPH_ZERO 24 28 #define MSG_GPH_ZERO_SIZE 8 29 30 #define MSG_GPH_LDSO 33 31 #define MSG_GPH_LDSO_SIZE 8 32 33 #define MSG_GPH_FIRST 42 34 #define MSG_GPH_FIRST_SIZE 9 35 36 #define MSG_GPH_FILTEE 52 37 #define MSG_GPH_FILTEE_SIZE 10 38 39 #define MSG_GPH_INITIAL 63 40 #define MSG_GPH_INITIAL_SIZE 11 41 42 #define MSG_GPD_DLSYM 75 43 #define MSG_GPD_DLSYM_SIZE 9 44 45 #define MSG_GPD_RELOC 85 46 #define MSG_GPD_RELOC_SIZE 9 47 48 #define MSG_GPD_ADDEPS 95 49 #define MSG_GPD_ADDEPS_SIZE 10 50 51 #define MSG_GPD_PARENT 106 52 #define MSG_GPD_PARENT_SIZE 10 53 54 #define MSG_GPD_FILTER 117 55 #define MSG_GPD_FILTER_SIZE 10 56 57 #define MSG_GPD_REMOVE 128 58 #define MSG_GPD_REMOVE_SIZE 10 59 60 #define MSG_GBL_NULL 0 61 #define MSG_GBL_NULL_SIZE 0 62 63 #else /* __lint */ 64 65 extern const char * _sgs_msg_libconv_group(Msg); 66 67 #ifndef MSG_SGS_LOCAL_ARRAY 68 #define MSG_SGS_LOCAL_ARRAY "" 69 #endif 70 71 extern const char __sgs_msg_libconv_group[]; 72 73 #define MSG_ORIG_STRTAB(_x, _s) _x 74 #define MSG_ORIG(x) x 75 #define MSG_INTL(x) x 76 77 #ifndef LINTSUP_SUPPRESS_STRINGS 78 79 #define MSG_GPH_PUBLIC "GPH_PUBLIC" 80 #define MSG_GPH_PUBLIC_SIZE 10 81 82 #define MSG_GPH_PRIVATE "GPH_PRIVATE" 83 #define MSG_GPH_PRIVATE_SIZE 11 84 85 #define MSG_GPH_ZERO "GPH_ZERO" 86 #define MSG_GPH_ZERO_SIZE 8 87 88 #define MSG_GPH_LDSO "GPH_LDSO" 89 #define MSG_GPH_LDSO_SIZE 8 90 91 #define MSG_GPH_FIRST "GPH_FIRST" 92 #define MSG_GPH_FIRST_SIZE 9 93 94 #define MSG_GPH_FILTEE "GPH_FILTEE" 95 #define MSG_GPH_FILTEE_SIZE 10 96 97 #define MSG_GPH_INITIAL "GPH_INITIAL" 98 #define MSG_GPH_INITIAL_SIZE 11 99 100 #define MSG_GPD_DLSYM "GPD_DLSYM" 101 #define MSG_GPD_DLSYM_SIZE 9 102 103 #define MSG_GPD_RELOC "GPD_RELOC" 104 #define MSG_GPD_RELOC_SIZE 9 105 106 #define MSG_GPD_ADDEPS "GPD_ADDEPS" 107 #define MSG_GPD_ADDEPS_SIZE 10 108 109 #define MSG_GPD_PARENT "GPD_PARENT" 110 #define MSG_GPD_PARENT_SIZE 10 111 112 #define MSG_GPD_FILTER "GPD_FILTER" 113 #define MSG_GPD_FILTER_SIZE 10 114 115 #define MSG_GPD_REMOVE "GPD_REMOVE" 116 #define MSG_GPD_REMOVE_SIZE 10 117 118 #define MSG_GBL_NULL "" 119 #define MSG_GBL_NULL_SIZE 0 120 121 #endif /* LINTSUP_SUPPRESS_STRINGS */ 122 123 #endif /* __lint */ 124 125 #endif 126