1 /* BEGIN INCLUDE FILE ... config_clok_card.incl.pl1 ... 11/27/80 W. Olin Sibert */ 2 3 dcl clok_cardp pointer; /* pointer to CLOK card */ 4 5 dcl 1 clok_card aligned based (clok_cardp), /* CLOK card declaration */ 6 2 word char (4), /* "clok" */ 7 2 delta fixed bin, /* Signed offset from GMT */ 8 2 zone char (4), /* Name of time zone, such as "hfe" */ 9 2 boot_delta fixed bin, /* Number of hours allowed between bootloads */ 10 11 2 pad (11) bit (36) aligned, /* Pad to 15 fields */ 12 13 2 type_word aligned, 14 3 field_type (14) bit (2) unaligned, /* type of each field; see config_deck.incl.pl1 */ 15 3 pad1 bit (4) unaligned, 16 3 n_fields fixed bin (4) unsigned unaligned; /* number of fields used on card */ 17 18 dcl CLOK_CARD_WORD char (4) aligned internal static options (constant) init ("clok"); 19 20 /* END INCLUDE FILE ... config_clok_card.incl.pl1 */