1
2
3 dcl INITIATED_RULE bit (18) static options (constant) init ("000000000000000001"b);
4 dcl REFERENCING_DIR_RULE bit (18) static options (constant) init ("000000000000000010"b);
5 dcl WDIR_RULE bit (18) static options (constant) init ("000000000000000011"b);
6 dcl END_RULE bit (18) static options (constant) init ("000000000000000100"b);
7 dcl BAD_RULE bit (18) static options (constant) init ("000000000000001000"b);
8
9 dcl search_rule_names (8) char (32) aligned static options (constant) init
10 ("initiated_segments",
11 "referencing_dir",
12 "working_dir",
13 "end_rules",
14 "",
15 "",
16 "",
17 "bad search rule");
18
19