1
2
3 dcl accountp ptr;
4 dcl aep ptr;
5
6 dcl dmpr_account_seg_version fixed bin int static init (1);
7 dcl account_dir char(168) int static init(">system_control_1>volume_backup_accounts") ;
8
9 dcl 1 dmpr_account_seg based (accountp) aligned,
10 2 lock bit (36),
11 2 version fixed bin,
12 2 type fixed bin,
13 2 volname char (32),
14 2 flags,
15 (3 dmpr_done bit (1),
16 3 accounting_started bit (1),
17 3 accounting_done bit (1),
18 3 pad (33) bit (1)) unaligned,
19 2 n_entries fixed bin,
20 2 next_offset fixed bin;
21
22 dcl 1 account_entry aligned based (aep),
23 2 indx fixed bin unaligned,
24 2 records fixed bin unaligned,
25 2 uid_path (0 : 15 refer (account_entry.indx)) bit (36);
26
27