1 /* BEGIN INCLUDE FILE comp_footnotes.incl.pl1 */ 2 3 /* format: style2,ind2,ll79,dclind4,idind15,comcol41,linecom */ 4 5 dcl 1 ftnblk_data aligned based (shared.ftnblk_data_ptr), 6 /* data for footnote blocks */ 7 2 highndx fixed (35), /* highest active footnote index */ 8 2 blkptr (250) ptr; /* block pointers */ 9 /* footnote header data block */ 10 dcl 1 ftnhdr aligned like text based (shared.footnote_header_ptr); 11 /* formatting parms for footnotes */ 12 dcl 1 footnote_parms 13 aligned like default_parms 14 based (const.footnote_parms_ptr); 15 16 /* END INCLUDE FILE comp_footnotes.incl.pl1 */