1 /* BEGIN INCLUDE FILE ... initial_modes_table.incl.pl1 */
 2 
 3 /* Initial Modes Table.
 4    This table has one entry per device type. It gives the initial
 5    modes to apply to that device when it dials up.
 6 
 7    PG 741230
 8 */
 9 
10 dcl  IMT_version fixed bin internal static initial (1);
11 
12 dcl 1 imt based (imtp) aligned,
13 %include author;
14     2 version fixed bin,
15     2 n_modes fixed bin,                                    /* number of modes filled in */
16     2 pad (43) fixed bin,                                   /* pad to 64 words */
17     2 tabs_string (5) char (160) varying,                   /* strings used to set tabs */
18     2 device (0:11) aligned,                                /* array of per-device info */
19       3 tab_setting_index fixed bin,                        /* index in tabs_string array, or 0 */
20       3 modes char (128) unaligned;                         /* initial modes string themselves */
21 
22 /* END INCLUDE FILE ... initial_modes_table.incl.pl1 */