1
2
3 dcl 1 rst_control aligned,
4 2 (default bit (1),
5 name bit (1),
6 uid bit (1),
7 potential_attributes bit (1),
8 attributes bit (1),
9 desired_attributes bit (1),
10 potential_aim_range bit (1),
11 aim_range bit (1),
12 owner bit (1),
13 acs_path bit (1),
14 location bit (1),
15 comment bit (1),
16 charge_type bit (1),
17 mode bit (1),
18 usage_lock bit (1),
19 release_lock bit (1),
20 awaiting_clear bit (1),
21 user_alloc bit (1),
22 given_flags bit (1),
23 mbz bit (16),
24 any_given_item bit (1)) unaligned;
25
26 dcl rst_control_defaults bit (36) aligned static options (constant) initial
27 ("1100100001010100010"b);
28
29