1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 dcl (TTY_MPX init (0),
17 MCS_MPX init (1),
18 USER1_MPX init (2),
19 USER2_MPX init (3),
20 USER3_MPX init (4),
21 USER4_MPX init (5),
22 USER5_MPX init (6),
23 IBM3270_MPX init (7),
24 VIP7760_MPX init (8),
25 STY_MPX init (9),
26 LAP_MPX init (10),
27 X25_MPX init (11),
28 HASP_MPX init (12),
29 UNCP_MPX init (13),
30 SYSTEM2_MPX init (14),
31 SYSTEM1_MPX init (15),
32 PROTOCOL_MPX init (16))
33 int static options (constant);
34
35 dcl mpx_types (0:16) char (32) int static options (constant) init (
36 "tty", "mcs", "user1", "user2", "user3", "user4", "user5", "ibm3270",
37 "vip7760", "sty", "lap", "x25", "hasp", "uncp", "system2", "system1",
38 "protocol");
39
40 dcl mpx_special_lock (0:16) bit (1) int static options (constant) init (
41 "0"b, "1"b, "0"b, "0"b, "0"b, "0"b, "0"b, "0"b,
42 "0"b, "0"b, "0"b, "0"b, "0"b, "1"b, "0"b, "0"b, "0"b);
43
44