/* * * Message/status codes for MTHRTL */ #ifndef _MTHDEF_H #define _MTHDEF_H /* Symbols are defined following the standard for global names: MTH$_ABCMNOXYZ In addition, the library standards specify that the letters "ABC", "MNO", and "XYZ" are the first three letters of the first three words of the error message, not counting articles and prepositions. */ #define MTH$_FACILITY 22 /* 0x0016 */ #define MTH$_WRONUMARG 0x00168284 /* 1475204 */ #define MTH$_INVARGMAT 0x0016828C /* 1475212 */ #define MTH$_UNDEXP 0x00168294 /* 1475220 */ #define MTH$_LOGZERNEG 0x0016829C /* 1475228 */ #define MTH$_SQUROONEG 0x001682A4 /* 1475236 */ #define MTH$_SIGLOSMAT 0x001682BC /* 1475260 */ #define MTH$_FLOOVEMAT 0x001682C4 /* 1475268 */ #define MTH$_FLOUNDMAT 0x001682CC /* 1475276 */ #define MTH$_NOTIMP 0x001682D4 /* 1475284 mth$not_implemented */ #define MTH$_VEC_INVARGMAT 0x001682DC /* 1475292 */ #define MTH$_VEC_UNDEXP 0x001682E4 /* 1475300 */ #define MTH$_VEC_LOGZERNEG 0x001682EC /* 1475308 */ #define MTH$_VEC_SQUROONEG 0x001682F4 /* 1475316 */ #define MTH$_VEC_FLOOVEMAT 0x001682FC /* 1475324 */ #define MTH$_VEC_FLOUNDMAT 0x00168304 /* 1475332 */ #define MTH$_SINCOSSIG 0x001682BC /* 1475260 */ #endif /*_MTHDEF_H*/