1 /* Begin include file rcp_disk_info.incl.pl1 2 * 3 * Created on 03/31/74 by Bill Silver. 4 * This include file defines the RCP device info structure for disks. 5 */ 6 7 8 9 10 /****^ HISTORY COMMENTS: 11 1) change(86-06-03,Hartogs), approve(86-06-03,MCR7383), 12 audit(86-06-06,GWMay), install(86-07-18,MR12.0-1098): 13 Added DISK_INFO_VERSION_1 constant. 14 END HISTORY COMMENTS */ 15 16 17 dcl disk_info_ptr ptr; /* Pointer to disk device info structure. */ 18 19 dcl 1 disk_info based(disk_info_ptr) aligned, /* RCP device info structure for disks. */ 20 2 version_num fixed bin, /* Version number of this structure. */ 21 2 usage_time fixed bin, /* Number of minutes drive will/may be used. */ 22 2 wait_time fixed bin, /* Number of minutes user will/must wait. */ 23 2 system_flag bit(1), /* ON => user wants to be a system process. */ 24 2 device_name char(8), /* Disk drive name. */ 25 2 model fixed bin, /* Disk drive model number. */ 26 2 volume_name char(32), /* Disk pack name. */ 27 2 write_flag bit(1); /* ON => writing on disk pack. */ 28 29 dcl DISK_INFO_VERSION_1 fixed bin int static options (constant) init (1); 30 31 /* End of include file ... rcp_disk_info.incl.pl1 */