-- --**************************************************************************** --* * --* 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:53:29 by OpenVMS SDL EV1-33 -- Source: 11-MAR-1991 16:59:25 $11$DUA933:[LIB_ADA.LIS]OSSFLGDEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package OSSFLGDEF is -- module $OSSFLGDEF --+ -- Security Object Information context flags definitions. -- -- This structure contains the flag definitions that are used -- in ctl$gl_oss_flags -- --- OSSFLG_M_RNDWN_DCLR : constant := 16#00000001#; type OSSFLG_FLAGS_BITS_TYPE is record RNDWN_DCLR : BOOLEAN; -- Rundown handler declared FILLER_1 : UNSIGNED_7; end record; for OSSFLG_FLAGS_BITS_TYPE use record RNDWN_DCLR at 0 range 0 .. 0; FILLER_1 at 0 range 1 .. 7; end record; for OSSFLG_FLAGS_BITS_TYPE'SIZE use 8; OSSFLG_FLAGS_BITS_TYPE_INIT : constant OSSFLG_FLAGS_BITS_TYPE := (RNDWN_DCLR => FALSE, FILLER_1 => 0); type OSSFLG_TYPE is record FLAGS_BITS : OSSFLG_FLAGS_BITS_TYPE; end record; for OSSFLG_TYPE use record FLAGS_BITS at 0 range 0 .. 7; end record; for OSSFLG_TYPE'SIZE use 8; OSSFLG_TYPE_INIT : constant OSSFLG_TYPE := ( FLAGS_BITS => OSSFLG_FLAGS_BITS_TYPE_INIT); end OSSFLGDEF;