1 /* BEGIN INCLUDE FILE ... tty_read_status_info.incl.pl1 2 3 control structure for the read_status and write_status orders to tty_ 4 5 Modified 2/1/83 by Olin Sibert to add tty_write_status_info structure in 6 support of lap_simplex_ MPX. 7 */ 8 9 10 /****^ HISTORY COMMENTS: 11 1) change(88-07-07,Beattie), approve(88-06-27,MCR7926), 12 audit(88-07-22,Brunelle), install(88-08-08,MR12.2-1082): 13 Prepared for installation. 14 END HISTORY COMMENTS */ 15 16 17 dcl 1 tty_read_status_info aligned based (tty_read_status_info_ptr), 18 2 event_channel fixed bin (71), 19 2 input_pending bit (1); 20 21 dcl tty_read_status_info_ptr ptr; 22 23 dcl 1 tty_write_status_info aligned based (tty_write_status_info_ptr), 24 2 event_channel fixed bin (71), 25 2 output_pending bit (1); 26 27 dcl tty_write_status_info_ptr ptr; 28 29 /* END INCLUDE FILE ... tty_read_status_info.incl.pl1 */