1 /*  BEGIN INCLUDE FiLE ... terminal_info.incl.pl1 */
 2 
 3 /* Created 5/25/77 by J. Stern */
 4 
 5 
 6 dcl 1 terminal_info aligned based (terminal_info_ptr),      /* info structure for terminal_info order */
 7       2 version fixed bin,                                  /* version number of this sturcture */
 8       2 id char (4) unaligned,                              /* terminal id from answerback */
 9       2 term_type char (32) unaligned,                      /* terminal type name */
10       2 line_type fixed bin,                                /* line type number */
11       2 baud_rate fixed bin,
12       2 reserved (4) fixed bin;                             /* reserved for future use */
13 
14 
15 dcl  terminal_info_ptr ptr;
16 dcl  terminal_info_version fixed bin int static options (constant) init (1); /* current version */
17 
18 
19 /* END INCLUDE FILE ... terminal_info.incl.pl1 */