/**/ /***************************************************************************/ /** **/ /** © Copyright 2010, Hewlett-Packard Development Company, L.P. **/ /** **/ /** Confidential computer software. Valid license from HP and/or **/ /** its subsidiaries required for possession, use, or copying. **/ /** **/ /** Consistent with FAR 12.211 and 12.212, Commercial Computer Software, **/ /** Computer Software Documentation, and Technical Data for Commercial **/ /** Items are licensed to the U.S. Government under vendor's standard **/ /** commercial license. **/ /** **/ /** Neither HP nor any of its subsidiaries shall be liable for technical **/ /** or editorial errors or omissions contained herein. The information **/ /** in this document is provided "as is" without warranty of any kind and **/ /** is subject to change without notice. The warranties for HP products **/ /** are set forth in the express limited warranty statements accompanying **/ /** such products. Nothing herein should be construed as constituting an **/ /** additional warranty. **/ /** **/ /***************************************************************************/ /********************************************************************************************************************************/ /* Created: 30-Mar-2010 17:24:52 by OpenVMS SDL EV3-3 */ /* Source: 14-NOV-2008 16:48:53 $1$DGA7274:[LIB_H.SRC]F11DEF.SDL;1 */ /********************************************************************************************************************************/ /*** MODULE $FI5DEF ***/ #ifndef __FI5DEF_LOADED #define __FI5DEF_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 /* */ /* ODS-5 format ident area. This is the only structural */ /* difference between ODS-2 and ODS-5. */ /* */ #define FI5$C_ODS2 0 /* ODS-2 legal ASCII */ #define FI5$C_ISL1 1 /* ODS-2 illegal ASCII or ISO LATIN-1 */ #define FI5$$_TYPE_RESERVED 2 #define FI5$C_UCS2 3 /* Unicode USC-2 (16 bit characters) */ #define FI5$M_FIXED_LENGTH 0x10 #define FI5$C_MIN_LENGTH 120 /* Minimum length of ident area */ #define FI5$C_MAX_LENGTH 324 /* Maximum length of ident area */ #define FI5$S_FI5DEF 324 /* Old size name - synonym */ typedef struct _fi5 { __union { unsigned char fi5$b_control; /* Control flags and name encoding */ __struct { unsigned fi5$v_nametype : 2; /* Encoding of the filename */ unsigned fi5$$_fill_1 : 2; /* reserved for nametype expansion; */ unsigned fi5$v_fixed_length : 1; /* If set, ident area may not be contracted \ /* when the name is changed */ unsigned fi5$v_fill_2_ : 3; } fi5$r_control_fields; } fi5$r_control_overlay; /* NOTE - The values of FI5$C_ODS2 et al. must be the same as the corresponding */ /* values for name encoding in DIRDEF and FIBDEF. All undefined fields */ /* in FI5$B_CONTROL are REQUIRED to be zero. */ unsigned char fi5$b_namelen; /* Length of name in bytes */ unsigned short int fi5$w_revision; /* revision number (binary) */ unsigned __int64 fi5$q_credate; /* creation date and time */ unsigned __int64 fi5$q_revdate; /* revision date and time */ unsigned __int64 fi5$q_expdate; /* expiration date and time */ unsigned __int64 fi5$q_bakdate; /* backup date and time */ unsigned __int64 fi5$q_accdate; /* last accessed time */ unsigned __int64 fi5$q_attdate; /* last attribute modification time */ unsigned __int64 fi5$q_ex_recattr; /* extended RMS attributes */ __struct { /* File length & record count hint */ unsigned __int64 fi5$q_hint_lo_qw; unsigned __int64 fi5$q_hint_hi_qw; } fi5$r_length_hint; char fi5$t_filename [44]; /* file name text */ char fi5$t_filenamext [204]; /* extension file name area */ } FI5; #if !defined(__VAXC) #define fi5$b_control fi5$r_control_overlay.fi5$b_control #define fi5$v_nametype fi5$r_control_overlay.fi5$r_control_fields.fi5$v_nametype #define fi5$v_fixed_length fi5$r_control_overlay.fi5$r_control_fields.fi5$v_fixed_length #define fi5$q_hint_lo_qw fi5$r_length_hint.fi5$q_hint_lo_qw #define fi5$q_hint_hi_qw fi5$r_length_hint.fi5$q_hint_hi_qw #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 /* __FI5DEF_LOADED */