1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
/** @def FITSHDR_KEYWORD
* @brief Flag bit indicating illegal keyword syntax.
*
* Bit mask for the status flag bit-vector returned by fitshdr() indicating
* illegal keyword syntax.
*/
/** @def FITSHDR_KEYVALUE
* @brief Flag bit indicating illegal keyvalue syntax.
*
* Bit mask for the status flag bit-vector returned by fitshdr() indicating
* illegal keyvalue syntax.
*/
/** @def FITSHDR_COMMENT
* @brief Flag bit indicating illegal keycomment syntax.
*
* Bit mask for the status flag bit-vector returned by fitshdr() indicating
* illegal keycomment syntax.
*/
/** @def FITSHDR_KEYREC
* @brief Flag bit indicating illegal keyrecord.
*
* Bit mask for the status flag bit-vector returned by fitshdr() indicating
* an illegal keyrecord, e.g. an END keyrecord with trailing text.
*/
/** @def FITSHDR_CARD
* @brief Deprecated.
*
* @deprecated Added for backwards compatibility, use <EM>FITSHDR_KEYREC</EM>
* instead.
*/
/** @def FITSHDR_TRAILER
* @brief Flag bit indicating keyrecord following a valid END keyrecord.
*
* Bit mask for the status flag bit-vector returned by fitshdr() indicating
* a keyrecord following a valid END keyrecord.
*/
/** @typedef int64
* @brief 64-bit signed integer data type.
*
* 64-bit signed integer data type defined via preprocessor macro WCSLIB_INT64
* which may be defined in wcsconfig.h. For example
*
* @code
* #define WCSLIB_INT64 long long int
* @endcode
*
* This is typedef'd in fitshdr.h as
*
* @code
* #ifdef WCSLIB_INT64
* typedef WCSLIB_INT64 int64;
* #else
* typedef int int64[3];
* #endif
* @endcode
*
* See fitskey::type.
*/
|