/***************************************************************************/ /** **/ /** 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:50 by OpenVMS SDL V3.7 */ /* Source: 22-APR-1993 10:35:40 $1$DGA8345:[LIB_H.SRC]CLUICBDEF.SDL;1 */ /********************************************************************************************************************************/ /*** MODULE $CLUICBDEF ***/ #ifndef __CLUICBDEF_LOADED #define __CLUICBDEF_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 /*+ */ /* CLUICB - Incarnation File Control Block */ /*- */ #define CLUICB$M_WIP 0x1 #define CLUICB$M_WREQ 0x2 #define CLUICB$K_F_LENGTH 32 /* Length of fixed portion */ #define CLUICB$C_F_LENGTH 32 /* Length of fixed portion */ /* End of fixed portion of the block */ #define CLUICB$T_BUFFER 32 /* Start of incarnation */ /* file buffer area */ #ifdef __cplusplus /* Define structure prototypes */ struct _irp; #endif /* #ifdef __cplusplus */ typedef struct _cluicb { /* Fixed portion */ struct _cluicb *cluicb$l_fl; /* Forward Link */ struct _cluicb *cluicb$l_bl; /* Backward Link */ unsigned short int cluicb$w_size; /* Size of block */ unsigned char cluicb$b_type; /* Structure type */ unsigned char cluicb$b_subtype; /* Structure subtype */ struct _irp *cluicb$l_irp; /* Address of IRP */ unsigned int cluicb$l_lbn; /* Incarnation file logical block number */ unsigned short int cluicb$w_wip_cnt; /* Write-in-progress counter */ short int cluicb$w_fill_1; /* Align */ __union { unsigned short int cluicb$w_flags; /* Flags */ __struct { unsigned cluicb$v_wip : 1; /* Write-in-progress bit */ unsigned cluicb$v_wreq : 1; /* Write requested bit */ unsigned cluicb$v_fill_2_ : 6; } cluicb$r_fill_1_; } cluicb$r_fill_0_; short int cluicb$w_fill_2; /* Align */ char cluicb$t_align [4]; /* QUADWORD ALIGN */ } CLUICB; #if !defined(__VAXC) #define cluicb$w_flags cluicb$r_fill_0_.cluicb$w_flags #define cluicb$v_wip cluicb$r_fill_0_.cluicb$r_fill_1_.cluicb$v_wip #define cluicb$v_wreq cluicb$r_fill_0_.cluicb$r_fill_1_.cluicb$v_wreq #endif /* #if !defined(__VAXC) */ #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 /* __CLUICBDEF_LOADED */