1 /*  BEGIN INCLUDE FILE:       mowse_io_bad_control.incl.pl1             *  *  *  *  *  *  *  *  *  *  *  *  */
 2 
 3 /****^  HISTORY COMMENTS:
 4   1) change(86-09-12,Flegel), approve(87-07-15,MCR7580),
 5      audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075):
 6      Created to detect control orders which mowse_io_ deems detrimental to
 7      its functionality.
 8   2) change(86-10-14,Flegel), approve(87-07-15,MCR7580),
 9      audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075):
10      Removed "set_output_conversion" from the list.
11   3) change(86-11-27,Flegel), approve(86-11-27,MCR7580),
12      audit(87-07-30,RBarstad), install(87-08-07,MR12.1-1075):
13      Approved.
14                                                    END HISTORY COMMENTS */
15 
16 /* tty_ documented control orders */
17 
18 /* format: style4,indattr,ifthen,^indcomtxt,thendo,^indproc,^indblkcom,initcol1,declareind8,dclind4,struclvlind3,comcol55 */
19 dcl N_BAD_CONTROL          fixed bin internal static options (constant)
20                            init (20);
21 
22 dcl MOWSE_IO_BAD_CONTROL   (20) char (32) var internal static
23                            options (constant) init
24                            ("get_chars_timeout",      /*  1 */
25                            "get_line_timeout",        /*  2 */
26                            "interrupt",               /*  3 */
27                            "listen",                  /*  4 */
28                            "position",                /*  5 */
29                            "put_chars_timeout",       /*  6 */
30                            "start_xmit_hd",           /*  7 */
31                            "stop_xmit_hd",            /*  8 */
32                            "input_flow_control_info", /*  9 */
33                            "output_flow_control_chars",
34                                                       /* 10 */
35                            "set_delay",               /* 11 */
36                            "set_framing_chars",       /* 12 */
37                            "set_input_translation",   /* 13 */
38                            "set_line_type",           /* 14 */
39                            "set_output_translation",  /* 15 */
40                            "set_wakeup_table",        /* 16 */
41                            "send_initial_string",     /* 17 */
42                            "set_event_channel",       /* 18 */
43                            "wru",                     /* 19 */
44                            "modes"                    /* 20 */
45                            );
46 
47 /*  END INCLUDE FILE:         mowse_io_bad_control.incl.pl1             *  *  *  *  *  *  *  *  *  *  *  *  */