-- --**************************************************************************** --* * --* Copyright (c) 2001 * --* by DIGITAL Equipment Corporation, Maynard, Mass. * --* * --* This software is furnished under a license and may be used and copied * --* only in accordance with the terms of such license and with the * --* inclusion of the above copyright notice. This software or any other * --* copies thereof may not be provided or otherwise made available to any * --* other person. No title to and ownership of the software is hereby * --* transferred. * --* * --* The information in this software is subject to change without notice * --* and should not be construed as a commitment by DIGITAL Equipment * --* Corporation. * --* * --* DIGITAL assumes no responsibility for the use or reliability of its * --* software on equipment which is not supplied by DIGITAL. * --* * --**************************************************************************** --******************************************************************************************************************** -- Created: 15-MAR-2001 22:54:24 by OpenVMS SDL EV1-33 -- Source: 2-SEP-1989 10:58:18 $11$DUA933:[LIB_ADA.LIS]VL2DEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package VL2DEF is -- module $VL2DEF --+ -- VOL2 ANSI MAGNETIC TAPE LABEL -- THIS IS BLOCK IS WRITTEN TO TAPES WHEN A VMS PROTECTION IS SPECIFIED --- type VL2_TYPE is record VL2LID : UNSIGNED_LONGWORD; -- LABEL IDENTIFIER AND NUMBER 'VOL2' VOLOWNER : STRING(1 .. 15); -- VOLUME OWNER IDENTIFICATION end record; for VL2_TYPE use record VL2LID at 0 range 0 .. 31; VOLOWNER at 4 range 0 .. 119; end record; for VL2_TYPE'SIZE use 152; VL2_TYPE_INIT : constant VL2_TYPE := (VL2LID => 0, VOLOWNER => (others => ASCII.NUL)); end VL2DEF;