1 
 2 /* begin include file ... cobol_TYPE7.incl.pl1 */
 3 /* Last modified on 11/17/76 by ORN */
 4 /* Last modified on 12/28/76 by FCH */
 5 
 6                     /* header */
 7                     2 size fixed bin,
 8                     2 line fixed bin,
 9                     2 column fixed bin,
10                     2 type fixed bin,
11                     /* body */
12                     2 string_ptr ptr,
13                     2 prev_rec ptr,
14                     2 searched bit (1),
15                     2 duplicate bit (1),
16                     2 filler1 bit (1),
17                     2 debug_ind bit (1),
18                     2 section_name bit (1),
19                     2 declarative_proc bit (1),
20                     2 filler2 bit (1),
21                     2 alterable bit (1),
22                     2 priority char (2),
23                     2 sort_range bit (1),
24                     2 input_range bit (1),
25                     2 output_range bit (1),
26                     2 merge_range bit(1),
27                     2 filler3 bit (5),
28                     2 section_num fixed bin,
29                     2 proc_num fixed bin,
30                     2 def_line fixed bin,
31                     2 name_size fixed bin,
32                     2 name char(0 refer(proc_def.name_size));
33 
34 
35 
36 /* end include file ... cobol_TYPE7.incl.pl1 */
37