1 /* BEGIN INCLUDE FILE ... flow_conrol_info.incl.pl1 */
 2 
 3 /* This include file defines the structures used for the "input_flow_control_chars"
 4    and "output_flow_control_chars" orders to MCS.
 5 */
 6 
 7 /* Created 08/13/79 by Robert S. Coren */
 8 
 9 dcl 1 input_flow_control_info aligned based,
10     2 suspend_seq unaligned,
11       3 count fixed bin (9) unsigned,
12       3 chars char (3),
13     2 resume_seq unaligned,
14       3 count fixed bin (9) unsigned,
15       3 chars char (3),
16     2 timeout bit (1);
17 
18 
19 dcl 1 output_flow_control_info aligned based,
20     2 flags unaligned,
21       3 suspend_resume bit (1),
22       3 block_acknowledge bit (1),
23       3 mbz bit (16),
24     2 buffer_size fixed bin (18) unsigned unaligned,
25     2 suspend_or_etb_seq unaligned,
26       3 count fixed bin (9) unsigned,
27       3 chars char (3),
28     2 resume_or_ack_seq unaligned,
29       3 count fixed bin (9) unsigned,
30       3 chars char (3);
31 
32 
33 /* END INCLUDE FILE ... flow_control_info.incl.pl1 */
34