1 /* BEGIN INCLUDE FILE ... retv_volume_list.incl.pl1 ... 8/76 */
 2 /* Changed to include the announced field ... GAT 8/83       */
 3 
 4 dcl  vlp ptr;
 5 
 6 dcl 1 retv_volume_list based (vlp) aligned,
 7     2 next fixed bin,
 8     2 array (1 : 1 refer (retv_volume_list.next)),
 9       3 volname char (32),
10       3 volid bit (36),
11       3 open_time fixed bin (71),
12       3 close_time fixed bin(71),
13       3 dump_type fixed bin,
14       3 flags,
15         4 use bit (1) unal,
16         4 announced bit (1) unal,
17         4 unused bit(34) unal;
18 
19 /* END INCLUDE FILE ... retv_volume_list.incl.pl1 */