1 /* BEGIN INCLUDE FILE ... output_volume_log.incl.pl1 9/76 */
 2 
 3 dcl  ovlp ptr;
 4 dcl  ovlep ptr;
 5 
 6 dcl  output_volume_log_version_1 fixed bin int static init (1) options (constant);
 7 
 8 dcl 1 output_volume_log aligned based (ovlp),
 9     2 lock bit (36),
10     2 version fixed bin,
11     2 dump_type fixed bin,
12     2 mount_time fixed bin (71),
13     2 volid bit (36),
14     2 next fixed bin,
15     2 in_use fixed bin,
16     2 array (1:1 refer (output_volume_log.next)) like ovle aligned;
17 
18 dcl 1 ovle based (ovlep) aligned,
19     2 pvname char (32),
20     2 invocation_count fixed bin;
21 
22 /* END INCLUDE FILE ... output_volume_log.incl.pl1 */