1 /*        BEGIN INCLUDE FILE io_timeout_info.incl.pl1                           */
 2 /* Initial version 1982.09.08 by Richard Lamson                                 */
 3 
 4 declare 1 input_timeout_info    based (timeout_info_ptr) aligned,
 5           2 timeout             fixed binary (71),
 6           2 buffer_pointer      pointer,
 7           2 buffer_length       fixed binary (21),
 8           2 characters_read     fixed binary (21);
 9 
10 declare 1 output_timeout_info   based (timeout_info_ptr) aligned,
11           2 timeout             fixed binary (71),
12           2 buffer_pointer      pointer,
13           2 buffer_length       fixed binary (21),
14           2 characters_written  fixed binary (21);
15 
16 declare   timeout_info_ptr pointer;
17 
18 /*        end include file io_timeout_info.incl.pl1                             */