-- --**************************************************************************** --* * --* 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:52:04 by OpenVMS SDL EV1-33 -- Source: 2-SEP-1989 10:42:09 $11$DUA933:[LIB_ADA.LIS]HD3DEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package HD3DEF is -- module $HD3DEF --+ -- HDR3 ANSI MAGNETIC TAPE LABEL -- THIS IS THE THIRD LABEL IN FILE LABEL HEADER SET. -- IT IDENTIFIES THE FILE ATTRIBUTES. --- type HD3_TYPE is record HD3LID : UNSIGNED_LONGWORD; -- LABEL IDENTIFIES AND NUMBER 'HDR3' RECATR : STRING(1 .. 64); -- 64 BYTES OF FILES-11 RECORD ATTRIBUTES FILLER_1 : STRING(1 .. 12); -- SPACES end record; for HD3_TYPE use record HD3LID at 0 range 0 .. 31; RECATR at 4 range 0 .. 511; FILLER_1 at 68 range 0 .. 95; end record; for HD3_TYPE'SIZE use 640; HD3_TYPE_INIT : constant HD3_TYPE := (HD3LID => 0, RECATR => (others => ASCII.NUL), FILLER_1 => (others => ASCII.NUL)); end HD3DEF;