1
2
3
4
5 dcl 1 usage_list aligned based (usage_list_ptr),
6 2 n_commands fixed binary,
7 2 locked bit (1) aligned,
8 2 directory character (168) unaligned,
9 2 commands (usage_list_size refer (usage_list.n_commands)),
10 3 name character (32) varying,
11 3 slot fixed binary unaligned,
12
13 3 primary bit (1) unaligned,
14 3 count_users bit (1) unaligned;
15
16 dcl usage_totals (1) fixed binary (35) based (usage_totals_ptr);
17
18
19 dcl 1 user_list (user_list_size) aligned based (user_list_ptr),
20 2 name character (32),
21 2 count fixed binary (35);
22
23 dcl usage_list_size fixed binary;
24 dcl user_list_size fixed binary static options (constant) initial (200);
25
26
27