-- --**************************************************************************** --* * --* 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:51:42 by OpenVMS SDL EV1-33 -- Source: 2-SEP-1989 10:40:12 $11$DUA933:[LIB_ADA.LIS]EO4DEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package EO4DEF is -- module $EO4DEF --+ -- EOF4 ANSI MAGNETIC TAPE LABEL -- THIS IS THE FOURTH LABEL IN THE FILE TRAILER LABEL SET. IT IS EQUIVALENT -- TO HDR4 EXCEPT FOR THE FOLLOWING FIELDS. --- type EO4_TYPE is record EO4LID : UNSIGNED_LONGWORD; -- LABEL IDENTIFIER AND NUMBER 'EOF4' end record; for EO4_TYPE use record EO4LID at 0 range 0 .. 31; end record; for EO4_TYPE'SIZE use 32; EO4_TYPE_INIT : constant EO4_TYPE := (EO4LID => 0); end EO4DEF;