1 /* Begin include file rcp_device_info.incl.pl1 2 * 3 * Created on 01/08/75 by Bill Silver. 4 * This include file defines the RCP device info structure for a general device. 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 DEVICE_INFO_VERSION_1 constant. 12 END HISTORY COMMENTS */ 13 14 15 dcl device_info_ptr ptr; /* Pointer to general device info structure. */ 16 17 dcl 1 device_info based(device_info_ptr) aligned, /* RCP device info structure for any device. */ 18 2 version_num fixed bin, /* Version number of this structure. */ 19 2 usage_time fixed bin, /* Number of minutes device 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), /* Device name. */ 23 2 model fixed bin, /* Device model number. */ 24 2 qualifiers(4) fixed bin(35); /* Qualifying characteristics. */ 25 26 dcl DEVICE_INFO_VERSION_1 fixed bin int static options (constant) init (1); 27 28 /* End of include file ... rcp_device_info.incl.pl1 */