1
2
3
4
5
6
7
8
9
10
11
12 dcl contentsp ptr;
13
14 dcl backup_volume_contents_version_3 fixed bin static init (3) options (constant);
15
16
17 dcl 1 v1_backup_volume_contents based (contentsp) aligned,
18 2 header like backup_volume_header aligned,
19 2 version fixed bin,
20 2 volname char (32),
21 2 volid bit (36),
22 2 next fixed bin,
23 2 array (1: 1 refer (backup_volume_contents.next)),
24 3 uid bit (36);
25
26 dcl 1 v2_backup_volume_contents based (contentsp) aligned,
27 2 header like backup_volume_header aligned,
28 2 version fixed bin,
29 2 volname char (32),
30 2 volid bit (36),
31 2 next fixed bin,
32 2 pad (10) bit (36),
33 2 array (1: 1 refer (backup_volume_contents.next)),
34 3 uid bit (36),
35 3 location,
36 4 component fixed bin (17) unal,
37 4 offset fixed bin (17) unal ;
38
39 dcl 1 backup_volume_contents based (contentsp) aligned,
40 2 header like backup_volume_header aligned,
41 2 version fixed bin,
42 2 volname char (32),
43 2 volid bit (36),
44 2 next fixed bin,
45 2 pad (10) bit (36),
46 2 array (1: 1 refer (backup_volume_contents.next)),
47 3 uid bit (36),
48 3 tape_loc fixed bin (35),
49 3 pad1 bit (36),
50 3 location,
51 4 component fixed bin (18) unsigned unal,
52 4 offset fixed bin (18) unsigned unal ;
53
54 dcl contents_namesp ptr;
55
56 dcl 1 backup_volume_contents_names based (contents_namesp) aligned,
57 2 version fixed bin,
58 2 offset fixed bin (18),
59 2 pad (6) bit (36),
60 2 begin bit (36);
61
62
63