1
2
3
4
5
6
7
8
9 dcl 1 rqt aligned based (rqt_ptr),
10 2 version character (8),
11 2 name character (32),
12 2 flags,
13 3 pad2 (6) bit (36) unaligned,
14 2 n_requests fixed binary,
15 2 requests (0 refer (rqt.n_requests)) like rq_data;
16
17 dcl rqt_ptr pointer;
18
19 dcl RQT_VERSION_4 character (8) static options (constant) initial ("srqt_4.0");
20
21
22
23
24 dcl 1 rq_data aligned based (rq_data_ptr),
25 2 code_loc bit (18) unaligned,
26 2 namelist_loc bit (18) unaligned,
27 2 info_string,
28 3 loc bit (18) unaligned,
29 3 lth fixed binary (17) unaligned,
30 2 flags aligned like request_flags;
31
32 dcl rq_data_ptr pointer;
33
34