/***************************************************************************/ /** **/ /** HPE CONFIDENTIAL. This software is confidential proprietary software **/ /** licensed by Hewlett-Packard Enterprise Development, LP, and is not **/ /** authorized to be used, duplicated OR disclosed to anyone without the **/ /** prior written permission of HPE. **/ /** © 2023 Copyright Hewlett-Packard Enterprise Development, LP **/ /** **/ /** VMS SOFTWARE, INC. CONFIDENTIAL. This software is confidential **/ /** proprietary software licensed by VMS Software, Inc., and is not **/ /** authorized to be used, duplicated or disclosed to anyone without **/ /** the prior written permission of VMS Software, Inc. **/ /** © 2023 Copyright VMS Software, Inc. **/ /** **/ /***************************************************************************/ /********************************************************************************************************************************/ /* Created: 9-Nov-2023 12:06:45 by OpenVMS SDL V3.7 */ /* Source: 09-APR-2021 11:34:34 $1$DGA8345:[LIB_H.SRC]SDADEF.SDL;1 */ /********************************************************************************************************************************/ /*** MODULE $SDA_CIODEF ***/ #ifndef __SDA_CIODEF_LOADED #define __SDA_CIODEF_LOADED 1 #pragma __nostandard /* This file uses non-ANSI-Standard features */ #pragma __member_alignment __save #pragma __nomember_alignment #ifdef __INITIAL_POINTER_SIZE /* Defined whenever ptr size pragmas supported */ #pragma __required_pointer_size __save /* Save the previously-defined required ptr size */ #pragma __required_pointer_size __short /* And set ptr size default to 32-bit pointers */ #endif #ifdef __cplusplus extern "C" { #define __unknown_params ... #define __optional_params ... #else #define __unknown_params #define __optional_params ... #endif #ifndef __struct #if !defined(__VAXC) #define __struct struct #else #define __struct variant_struct #endif #endif #ifndef __union #if !defined(__VAXC) #define __union union #else #define __union variant_union #endif #endif #define SDA_CIO$M_VALID 0x1 #define SDA_CIO$M_PROCESS 0x2 #define SDA_CIO$M_SLICED 0x4 #define SDA_CIO$M_COMPRESSED 0x8 #define SDA_CIO$M_ISD_INDEX 0xFFF0 #define SDA_CIO$K_FIX 0 /* Dynamic (fixup) */ #define SDA_CIO$K_INIT_CODE 1 /* Initialization (code) */ #define SDA_CIO$K_INIT_DATA 2 /* Initialization (data) */ #define SDA_CIO$K_CODE 3 /* Code */ #define SDA_CIO$K_RW 4 /* Data (read/write) */ #define SDA_CIO$K_RO 5 /* Data (read only) */ #define SDA_CIO$K_DZERO 6 /* Demand zero */ #define SDA_CIO$K_TR_DZERO 7 /* Trailing demand zero */ #define SDA_CIO$K_UNWIND 8 /* Unwind tables */ #define SDA_CIO$K_UNKNOWN 9 /* Insert new entries before this */ typedef struct _comp_img_off { unsigned sda_cio$v_valid : 1; /* Set if found an image */ unsigned sda_cio$v_process : 1; /* Set if this is a process activated image */ unsigned sda_cio$v_sliced : 1; /* Set if this image is sliced or installed/resident */ unsigned sda_cio$v_compressed : 1; /* Set if this section is a compressed data section */ unsigned sda_cio$v_isd_index : 12; /* index into ISD table */ } COMP_IMG_OFF; #pragma __member_alignment __restore #ifdef __INITIAL_POINTER_SIZE /* Defined whenever ptr size pragmas supported */ #pragma __required_pointer_size __restore /* Restore the previously-defined required ptr size */ #endif #ifdef __cplusplus } #endif #pragma __standard #endif /* __SDA_CIODEF_LOADED */