/*********************************************************************************************************************************/
/* Created 12-MAY-1988 14:23:05  by  VAX-11 SDL V3.0-1     Source: 12-MAY-1988 14:22:40 DUA0:[BRIAN.DECUS.EXAMPLES.MANDELZOOM]STRUC 
*/
/*********************************************************************************************************************************/
 
 
/*** MODULE _structs ***/
/*                                                                          */
/*	Header definition                                                   */
/*                                                                          */
#define hdr_k_version 1                 /* Current version of the program   */
#define hdr_k_length 512                /* Size of this structure           */
struct hdrdef {
    unsigned long int hdr_l_version;    /* Version of the program that wrote this file */
    float hdr_f_center_r;               /* Center point, real part          */
    float hdr_f_center_i;               /* Center point, imaginary part     */
    float hdr_f_scale_r;                /* Scale, real part                 */
    float hdr_f_scale_i;                /* Scale, imaginary part            */
    unsigned long int hdr_l_hsize;      /* Horizontal size in pixels        */
    unsigned long int hdr_l_vsize;      /* Vertical size in pixels          */
    unsigned int hdr_q_time [2];        /* Time/date when image was computed */
    unsigned long int hdr_l_pixel_size; /* Bytes per pixel                  */
    unsigned long int hdr_l_max_value;  /* Maximum pixel value              */
    } ;
/*                                                                          */
/*	Color table definition                                              */
/*                                                                          */
struct ctbldef {
    unsigned char ctbl_b_red;           /* Red component                    */
    unsigned char ctbl_b_grn;           /* Green component                  */
    unsigned char ctbl_b_blu;           /* Blue component                   */
    unsigned char ctbl_b_spare;         /* Spare, to fill out structure to a longword */
    } ;
