1 /* BEGIN INCLUDE FILE ... backup_volume_record.incl.pl1 ... March 1976 */ 2 3 4 5 /****^ HISTORY COMMENTS: 6 1) change(88-10-05,GWMay), approve(88-10-05,MCR8005), audit(88-10-12,Farley), 7 install(88-10-17,MR12.2-1173): 8 Added a version 2 constant 9 END HISTORY COMMENTS */ 10 11 12 dcl recordp ptr; 13 14 dcl backup_volume_record_version_1 fixed bin static init (1) options (constant); 15 dcl backup_volume_record_version_2 fixed bin static init (2) options (constant); 16 17 dcl 1 backup_volume_record based (recordp) aligned, 18 2 header like backup_volume_header aligned, 19 2 version fixed bin, /* version number of structure */ 20 2 pvid bit (36), /* physical volume id */ 21 2 vtocx fixed bin, /* vtoc index of returned vtoc entry */ 22 2 vtoce like vtoce aligned; /* vtoc entry */ 23 24 /* END INCLUDE FILE ... backup_volume_record.incl.pl1 */