1
2
3
4
5
6
7 dcl load_infop ptr;
8 dcl load_info_nchan fixed bin;
9
10 dcl 1 load_info aligned based (load_infop),
11 2 event_channel fixed bin (71),
12 2 flags unal,
13 3 ascii bit (1),
14 3 debug bit (1),
15 3 allow_raw3270 bit (1),
16 3 allow_copy bit (1),
17 3 pad bit (32) unal,
18 2 controller_address fixed bin,
19 2 quit_key fixed bin,
20 2 formfeed_key fixed bin,
21 2 nchan fixed bin,
22 2 chan_info (load_info_nchan) like chan_load_info;
23
24 dcl chan_load_infop ptr;
25
26 dcl 1 chan_load_info aligned based (chan_load_infop),
27 2 devx fixed bin,
28 2 screen_size fixed bin,
29 2 line_size fixed bin;
30
31 dcl (IBM3270_MPX_UP init (1),
32 IBM3270_MPX_DOWN init (2),
33 IBM3270_MPX_MASKED init (3)) fixed bin (71) int static options (constant);
34
35
36
37 dcl (PA1 init (1),
38 PA2 init (2),
39 PA3 init (3),
40 CLEAR init (4)) fixed bin int static options (constant);
41
42