/***************************************************************************/ /** **/ /** 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:59 by OpenVMS SDL V3.7 */ /* Source: 20-APR-1993 14:03:49 $1$DGA8345:[LIB_H.SRC]KFPBDEF.SDL;1 */ /********************************************************************************************************************************/ /*** MODULE $KFPBDEF ***/ #ifndef __KFPBDEF_LOADED #define __KFPBDEF_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 /* */ /* KNOWN FILE POINTER BLOCK DEFINITIONS */ /* */ #define KFPB$K_LENGTH 16 /* Length of pointer block */ #define KFPB$C_LENGTH 16 /* Length of pointer block */ #define KFPB$S_KFPBDEF 16 #ifdef __cplusplus /* Define structure prototypes */ struct _kfd; #endif /* #ifdef __cplusplus */ typedef struct _kfpb { struct _kfd *kfpb$l_kfdlst; /* Device, Directory, Extension (KFD) list link */ void *kfpb$l_kfehshtab; /* Address of Known file name hash table */ unsigned short int kfpb$w_size; /* Size of pointer block in bytes */ unsigned char kfpb$b_type; /* Pointer block type */ unsigned char kfpb$b_spare; /* spare byte */ unsigned short int kfpb$w_kfdlstcnt; /* Number of entries in KFD list */ unsigned short int kfpb$w_hshtablen; /* Length of Hash table */ } KFPB; #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 /* __KFPBDEF_LOADED */