1 /* BEGIN INCLUDE FILE display_doc_info.incl.pl1 */ 2 3 /* this file contains the declarations for the flags, etc. needed by 4 display_doc. 5 6 HISTORY: 7 Written by Jim Paradise, 09/29/80 8 Modified: 9 81-03-05 by M. Pierret to lengthen to two words. 10 81-10-19 by M. Pierret changing name from display_doc_data to display_doc_info, 11 display_flags to display_info. Added topics_flag for displaying 12 selected topics (for wdoc). 13 83-09-01 by M. Pierret adding display_leading_blank_line. 14 83-09-20 by M. Pierret removing one bit from pad1. 15 -----------------------------------------------------------------------------*/ 16 /* format: style2 */ 17 18 dcl display_info_ptr ptr; 19 20 dcl 1 display_info aligned based (display_info_ptr), 21 2 header unal, 22 3 order_number_flag 23 bit (1), 24 3 revision_flag bit (1), 25 3 full_name_flag bit (1), 26 3 short_name_flag bit (1), 27 3 release_supported_flag 28 bit (1), 29 3 topics_flag bit (1), 30 2 pad1 bit (30) unal, 31 2 text unal, 32 3 description_flag bit (1), 33 3 audience_flag bit (1), 34 3 table_of_contents_flag 35 bit (1), 36 3 new_features_flag 37 bit (1), 38 2 display_leading_blank_line 39 bit (1) unal, 40 2 pad2 bit (31) unal; 41 42 /* END INCLUDE FILE display_doc_info.incl.pl1 */