-- --**************************************************************************** --* * --* 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:19 by OpenVMS SDL EV1-33 -- Source: 2-SEP-1989 10:42:55 $11$DUA933:[LIB_ADA.LIS]IHIDEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package IHIDEF is -- module $IHIDEF --+ -- IMAGE HEADER IDENTIFICATION SECTION OFFSETS --- IHI_K_LENGTH : constant := 80; -- LENGTH OF IMAGE HEADER IDENT SECTION IHI_C_LENGTH : constant := 80; -- LENGTH OF IMAGE HEADER IDENT SECTION type IHI_TYPE is record IMGNAM : STRING(1 .. 40); -- IMAGE NAME STRING IMGID : STRING(1 .. 16); -- IMAGE IDENT STRING LINKTIME : UNSIGNED_QUADWORD; -- DATE AND TIME THIS IMAGE WAS LINKED -- STANDARD SYSTEM QUADWORD FORMAT LINKID : STRING(1 .. 16); -- LINKER IDENT STRING end record; for IHI_TYPE use record IMGNAM at 0 range 0 .. 319; IMGID at 40 range 0 .. 127; LINKTIME at 56 range 0 .. 63; LINKID at 64 range 0 .. 127; end record; for IHI_TYPE'SIZE use 640; IHI_TYPE_INIT : constant IHI_TYPE := (IMGNAM => (others => ASCII.NUL), IMGID => (others => ASCII.NUL), LINKTIME => (0, 0), LINKID => (others => ASCII.NUL)); end IHIDEF;