1 /* BEGIN INCLUDE FILE ... set_wakeup_table_info.incl.pl1 */
 2 
 3 /* Created 3/1/79 by J. Stern */
 4 
 5 
 6 dcl  swt_infop ptr;
 7 dcl  swt_info_version_1 fixed bin static options (constant) init (1);
 8 
 9 dcl 1 swt_info aligned based (swt_infop),                   /* info structure for set_wakeup_table control order */
10       2 version fixed bin,                                  /* version number of this structure */
11       2 new_table like wakeup_table,                        /* wakeup table to set */
12       2 old_table like wakeup_table;                        /* previous wakeup table */
13 
14 dcl wakeup_tablep ptr;
15 
16 dcl 1 wakeup_table aligned based (wakeup_tablep),
17       2 wake_map (0:127) bit (1) unal,                      /* bit i ON if ith char is wakeup char */
18       2 mbz bit (16) unal;
19 
20 
21 /* END INCLUDE FILE ... set_wakeup_table_info.incl.pl1 */