1 /* BEGIN INCLUDE FILE ... pvolog.incl.pl1 9/76 */
 2 
 3 dcl  pvlp ptr;
 4 dcl  pvlep ptr;
 5 
 6 dcl  pvolog_version_1 fixed bin int static init (1) options (constant);
 7 
 8 dcl 1 pvolog aligned based (pvlp),
 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 (pvolog.next)) like pvle aligned;
17 
18 dcl 1 pvle based (pvlep) aligned,
19     2 pvname char (32),
20     2 invocation_count fixed bin;
21 
22 /* END INCLUDE FILE ... pvolog.incl.pl1 */