1 /* Begin include file rcp_lv_info.incl.pl1 2 * 3 * Created on 04/02/76 by Bill Silver. 4 * This include file defines the RCP lv info structure. 5 */ 6 dcl lv_info_ptr ptr; /* Pointer to lv info structure. */ 7 8 dcl rlvi_version_1 fixed bin internal static init (1); 9 10 dcl 1 lv_info based(lv_info_ptr) aligned, /* RCP lv info structure. */ 11 2 version_num fixed bin, /* Version number of this structure. */ 12 2 usage_time fixed bin, /* Number of minutes lv will/may be used. */ 13 2 wait_time fixed bin, /* Number of minutes user will/must wait. */ 14 2 system_flag bit(1), /* ON => user wants to be a system process. */ 15 2 volume_name char(32); /* Logical volume name. */ 16 17 /* End of include file ... rcp_lv_info.incl.pl1 */