1
2
3
4
5
6 dcl tty_event_message fixed bin (71);
7
8 dcl 1 tty_msg based (addr (tty_event_message)),
9 2 ev_devx fixed bin (17) unaligned,
10 2 ev_type fixed bin (17) unaligned,
11 2 pad bit (36);
12
13 dcl UNSPECIFIED_MSG fixed bin internal static options (constant) init (0);
14 dcl DIALUP_MSG fixed bin internal static options (constant) init (1);
15 dcl HANGUP_MSG fixed bin internal static options (constant) init (2);
16 dcl DIALOUT_MSG fixed bin internal static options (constant) init (3);
17 dcl QUIT_MSG fixed bin internal static options (constant) init (4);
18 dcl READ_MSG fixed bin internal static options (constant) init (5);
19 dcl WRITE_MSG fixed bin internal static options (constant) init (6);
20 dcl LINE_STATUS_MSG fixed bin internal static options (constant) init (7);
21 dcl MASKED_MSG fixed bin internal static options (constant) init (8);
22
23