1 /*        BEGIN INCLUDE FILE ... tty_event_message.incl.pl1 */
 2 
 3 /*        describes event message passed with wakeups from the tty DIM */
 4 /*        Created 5/24/76 by Robert S. Coren */
 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,                     /* device index */
10     2 ev_type fixed bin (17) unaligned,                     /* reason for wakeup (see below) */
11     2 pad bit (36);
12 
13 dcl  UNSPECIFIED_MSG fixed bin internal static options (constant) init (0);  /* used for "start" order, etc. */
14 dcl  DIALUP_MSG fixed bin internal static options (constant) init (1);  /* dialup */
15 dcl  HANGUP_MSG fixed bin internal static options (constant) init (2);  /* hangup */
16 dcl  DIALOUT_MSG fixed bin internal static options (constant) init (3);  /* dialout status returned */
17 dcl  QUIT_MSG fixed bin internal static options (constant) init (4);  /* quit */
18 dcl  READ_MSG fixed bin internal static options (constant) init (5);  /* input arrived */
19 dcl  WRITE_MSG fixed bin internal static options (constant) init (6);  /* output completed */
20 dcl  LINE_STATUS_MSG  fixed bin internal static options (constant) init (7); /* control tables sent status */
21 dcl  MASKED_MSG fixed bin internal static options (constant) init (8); /* channel masked by FNP */
22 
23 /*        END INCLUDE FILE ... tty_event_message.incl.pl1 */