1 /* BEGIN INCLUDE FILE tty_states.incl.pl1 BIM November 1980 */
 2 
 3 /* format: style1 */
 4      declare (TTY_STATE_MASKED init (-1),
 5              TTY_STATE_HUNG_UP     init (1),                /* Returned by hcs_$tty_* when neither listening or dialed */
 6              TTY_STATE_LISTENING    init (2),               /* listening */
 7              TTY_STATE_DIALED_UP    init (5)                /* really dialed up */
 8              )                      fixed bin internal static options (constant);
 9 
10 /* END INCLUDE FILE tty_states.incl.pl1 */