1 /* BEGIN INCLUDE FILE  -  receive_file_data.incl.pl1        */
 2 
 3 /* This include file defines the structure which is part of the interface to the receive_file_.pl1 procedure. */
 4 
 5 dcl  receive_file_data_ptr ptr;
 6 
 7 dcl 1 receive_file_data aligned based (receive_file_data_ptr),        /* data for receive_file_ default file_data */
 8     2 version fixed bin,
 9     2 flags,
10       3 testing bit (1) unal,                               /* TRUE when in test mode */
11       3 no_ident bit (1) unal,                              /* TRUE when no ++IDENT record is required */
12       3 auto_queue bit (1) unal,                            /* TRUE when file is to be dp -dl by driver */
13     2 device_type fixed bin,                                /* code for input device type (see below) */
14     2 request_type char (32);                               /* default request type for auto_queue */
15 
16 dcl  receive_file_data_version_1 fixed bin int static options (constant) init (1);
17 
18 dcl  printer_input_device fixed bin int static options (constant) init (1);
19 dcl  punch_input_device fixed bin int static options (constant) init (2);
20 
21 
22 /* END INCLUDE FILE  -  receive_file_data.incl.pl1                    */
23