1 /*  START OF:       tty_control_orders_info.incl.pl1          *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */
 2 /* format: style2 */
 3 
 4 dcl  tty_old_type           fixed bin based;                /* terminal type number for set_type order */
 5 
 6 dcl  1 tty_send_initial_string_info
 7                             aligned based,                  /* info structure for send_initial_string order */
 8        2 version            fixed bin,
 9        2 initial_string     char (512) varying;
10 
11 dcl  1 tty_info             aligned based,
12        2 id                 char (4),
13        2 baudrate           fixed bin unal,
14        2 reserved           bit (54) unal,
15        2 type               fixed bin;
16 
17 dcl  1 tty_modes_info       based aligned,
18        2 mode_length        fixed bin,
19        2 modes              char (tty_modes_info.mode_length);
20 
21 /*  END OF:         tty_control_orders_info.incl.pl1          *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */