1
2
3
4
5
6
7
8 dcl fwlistp ptr;
9 dcl fwlist_n fixed bin;
10
11 dcl 1 fwlist aligned based (fwlistp),
12 2 n fixed bin,
13 2 entry (fwlist_n refer (fwlist.n)) like fwe;
14
15
16 dcl fwep ptr;
17
18 dcl 1 fwe aligned based (fwep),
19 2 name char (32),
20 2 segp ptr,
21 2 type fixed bin,
22 2 device (4) char (3) unal,
23 2 port_mask bit (8),
24 2 cs_ptr ptr,
25 2 rw_ptr ptr,
26 2 cs_len fixed bin,
27 2 rw_len fixed bin;
28
29 dcl control_store_overlay (fwe.cs_len) bit (36) aligned based (fwe.cs_ptr);
30 dcl read_write_overlay (fwe.rw_len) bit (36) aligned based (fwe.rw_ptr);
31
32 dcl (FWE_TYPE_ITR init (1),
33 FWE_TYPE_FW init (2),
34 FWE_TYPE_DEV init (3)) int static options (constant);
35
36