1
2
3 dcl 1 ta_filesys_star_info aligned based (ta_filesys_star_ptr),
4 2 n_entries fixed bin,
5 2 ename (ta_star_match_count refer (ta_filesys_star_info.n_entries)) char (32) unaligned;
6
7 dcl 1 ta_component_star_info aligned based (ta_component_star_ptr),
8 2 n_entries fixed bin,
9 2 entry (ta_star_match_count refer (ta_component_star_info.n_entries)),
10 3 ename char (32) unaligned,
11 3 type fixed bin,
12 3 table_idx fixed bin;
13
14 dcl ta_star_match_count fixed bin,
15 ta_filesys_star_ptr pointer,
16 ta_component_star_ptr pointer;
17
18 dcl (Component initial (1),
19 Request initial (2)) fixed bin static options (constant);
20
21