1 /*  Begin include file  ...  pps_attach_block.incl.pl1  */
 2 
 3 
 4 dcl  pps_attach_block_version_1 fixed bin static internal options (constant) init (1);
 5 dcl  ppsab_ptr ptr;
 6 
 7 dcl 1 ppsab based (ppsab_ptr) aligned,
 8     2 version fixed bin,
 9     2 attach_descrip char (256) varying,
10     2 target_name char (32) unal,
11     2 target_attach_descrip char (256) unal,
12     2 detach_time_attach_descrip char (256) unal,
13     2 target_iocb_ptr ptr,
14     2 modes,
15       3 debug bit (1) unal,
16       3 no_print bit (1) unal,
17       3 single_page bit (1) unal,
18     2 ppscb_dir char (168) unal,
19     2 ppscb_entry char (32) unal,
20     2 ppscb_name char (32) unal,
21     2 ppscb_ptr ptr,
22     2 tape_density fixed bin,
23     2 file_number fixed bin,
24     2 file_name char (17),
25     2 retain_option char (4) varying,
26     2 volids char (256) varying,
27     2 open_descrip char (256) varying,
28     2 table_ptr ptr,
29     2 mvt_entry entry,
30     2 stop_every fixed bin (71),
31     2 stop_count fixed bin (71),
32     2 chars_printed fixed bin (35),
33     2 paper_info,
34       3 cpii fixed bin,
35       3 lpii fixed bin,
36       3 swi fixed bin,
37       3 sli fixed bin,
38     2 pps_pci like pci;
39 ^L
40 %include prt_conv_info;
41 
42 
43 /*  End include file  ...  pps_attach_block.incl.pl1  */