-- --**************************************************************************** --* * --* 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:35 by OpenVMS SDL EV1-33 -- Source: 2-SEP-1989 10:40:04 $11$DUA933:[LIB_ADA.LIS]EO1DEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package EO1DEF is -- module $EO1DEF --+ -- EOF1 ANSI MAGNETIC TAPE LABEL -- THIS IS THE FIRST LABEL IN FILE TRAILER LABEL SET. IT IS EQUIVALENT TO -- HDR1 EXCEPT FOR THE FOLLOWING FIELDS. --- type EO1_TYPE is record EO1LID : UNSIGNED_LONGWORD; -- LABEL IDENTIFIER AND NUMBER 'EOF1' FILLER_1 : STRING(1 .. 50); -- SAME AS HDR1 BLOCKCNT : STRING(1 .. 6); -- BLOCK COUNT end record; for EO1_TYPE use record EO1LID at 0 range 0 .. 31; FILLER_1 at 4 range 0 .. 399; BLOCKCNT at 54 range 0 .. 47; end record; for EO1_TYPE'SIZE use 480; EO1_TYPE_INIT : constant EO1_TYPE := (EO1LID => 0, FILLER_1 => (others => ASCII.NUL), BLOCKCNT => (others => ASCII.NUL)); end EO1DEF;