/***************************************************************************/ /** **/ /** 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:07:00 by OpenVMS SDL V3.7 */ /* Source: 03-MAY-2000 16:25:34 $1$DGA8345:[LIB_H.SRC]LCSDEF.SDL;1 */ /********************************************************************************************************************************/ /*** MODULE $LCSDEF ***/ #ifndef __LCSDEF_LOADED #define __LCSDEF_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 /* */ /* Structure(s) for RMS conversions between a local character set */ /* (e.g., Super DEC Kanji) and Unicode for filenames */ /* */ /* This structure, when inserted into the known extension queue, */ /* registers an RMS extension with the base RMS. It should contain */ /* entry points for a set of conversion functions for the selected */ /* local character set. */ /* */ #define LCS$S_NAME 32 /* Maximum space for extension name */ #define LCS$C_BLN 72 #define LCS$K_BLN 72 typedef struct _lcs { void *lcs$l_flink; /* links to next and previous */ void *lcs$l_blink; /* registered LCS structures. */ unsigned short int lcs$w_size; /* allocated size of structure */ unsigned short int lcs$w_namlen; /* length of extension name */ char lcs$t_name [32]; /* space for extension name */ int (*lcs$a_calc_vtf7_to_local)(); /* Calculate length of converted string (in local code-set). */ int (*lcs$a_conv_vtf7_to_local)(); /* Convert string from VTF-7 to local code-set. */ int (*lcs$a_calc_local_to_vtf7)(); /* Calculate length of converted string (in VTF-7). */ int (*lcs$a_conv_local_to_vtf7)(); /* Convert string from local code-set to VTF-7. */ int (*lcs$a_conv_filesys_to_local)(); /* Convert string from File System format to local code-set. */ int (*lcs$a_build_local_pqb)(); /* Called by SYS$CREPRC to copy a LCS from a parent process to PQB. */ int (*lcs$a_restore_local_pqb)(); /* Called by EXE$PROCSTRT to copy a LCS from PQB to a subprocess. */ } LCS; #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 /* __LCSDEF_LOADED */