1 /*        Begin  include file rcp_printer_info.incl.pl1
 2 *
 3 *         Created on 01/08/75 by Bill Silver.
 4 *         This include file defines the RCP device info structure for printers.
 5 */
 6 
 7 
 8 /****^  HISTORY COMMENTS:
 9   1) change(86-06-04,Hartogs), approve(86-06-04,MCR7383),
10      audit(86-06-05,Coppola), install(86-07-18,MR12.0-1098):
11      Added version constant PRINTER_INFO_VERSION_1.
12                                                    END HISTORY COMMENTS */
13 
14 
15 dcl       printer_info_ptr    ptr;                /* Pointer to printer device info structure. */
16 
17 dcl    1  printer_info based(printer_info_ptr) aligned,  /* RCP device info structure for printers. */
18           2  version_num      fixed bin,          /* Version number of this structure. */
19           2  usage_time       fixed bin,          /* Number of minutes printer will/may be used. */
20           2  wait_time        fixed bin,          /* Number of minutes user will/must wait. */
21           2  system_flag      bit(1),             /* ON => user wants to be a system process. */
22           2  device_name      char(8),            /* Printer name. */
23           2  model            fixed bin,          /* Printer model number. */
24           2  print_train      fixed bin,          /* Print train type. */
25           2  line_length      fixed bin;          /* Printer line length.  -1 => not specified. */
26 
27 dcl PRINTER_INFO_VERSION_1 fixed bin int static options (constant) init (1);
28 
29 /*        End of include file ... rcp_printer_info.incl.pl1 */