1
2
3
4
5
6
7
8
9
10
11 dcl 1 status_for_backup aligned based,
12 2 version fixed bin,
13 2 pad1 bit (108),
14 2 switches unaligned,
15 3 safety bit (1) unaligned,
16 3 entrypt bit (1) unaligned,
17 3 security_oosw bit (1) unaligned,
18 3 audit_flag bit (1) unaligned,
19 3 multiple_class bit (1) unaligned,
20 3 pad2 bit (2) unaligned,
21 3 master_dir bit (1) unaligned,
22 3 tpd bit (1) unaligned,
23 3 pad13 bit (13) unaligned,
24 2 entrypt_bound bit (14) unaligned,
25 2 access_class bit (72),
26 2 spad bit (36),
27 2 author char (32),
28 2 bc_author char (32),
29 2 lvid bit (36),
30 2 pvid bit (36),
31 2 pad3 bit (216);
32
33 dcl status_for_backup_version_2 fixed bin initial (2) static options (constant);
34
35