-- --**************************************************************************** --* * --* 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:49:55 by OpenVMS SDL EV1-33 -- Source: 2-SEP-1989 10:34:10 $11$DUA933:[LIB_ADA.LIS]ALFDEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package ALFDEF is -- module $ALFDEF --+ -- -- $ALFDEF - structure for auto-login file. -- --- ALF_C_LENGTH : constant := 128; ALF_K_LENGTH : constant := 128; type ALF_TYPE is record DEVNAME : STRING(1 .. 63); -- Terminal device name USERNAME : STRING(1 .. 32); -- Associated username FILLER_1 : UNSIGNED_BYTE_ARRAY (1 .. 33); end record; for ALF_TYPE use record DEVNAME at 0 range 0 .. 503; USERNAME at 63 range 0 .. 255; FILLER_1 at 95 range 0 .. 263; end record; for ALF_TYPE'SIZE use 1024; ALF_TYPE_INIT : constant ALF_TYPE := (DEVNAME => (others => ASCII.NUL), USERNAME => (others => ASCII.NUL), FILLER_1 => (others => 0)); end ALFDEF;