1 /* Begin include file pnt_header.incl.pl1 BIM 1984-07-24 */ 2 /* format: style3 */ 3 4 declare pnt_header_ptr pointer; 5 declare 1 pnt_header aligned based (pnt_header_ptr), 6 2 version fixed bin, 7 2 author char (32) unaligned, 8 2 n_checksum_failures 9 fixed bin (35), /* ever in this PNT */ 10 2 n_registered fixed bin (35), /* not counting aliases */ 11 2 n_deletions fixed bin (35), 12 2 pad (4) bit (36) aligned; /* to 16 words */ 13 14 declare PNT_VERSION_3 fixed bin int static init (3) options (constant); 15 16 /* End include file pnt_header.incl.pl1 */