/********************************************************************************************************************************/ /* Created: 30-Mar-2010 17:29:39 by OpenVMS SDL EV3-3 */ /* Source: 30-MAR-2010 17:29:20 $1$DGA7274:[STARLET_H.SRC]OBJFMT.SDI;1 */ /********************************************************************************************************************************/ /*** MODULE $FMLDEF ***/ #ifndef __FMLDEF_LOADED #define __FMLDEF_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 /* */ /* Appended to a procedure definition are the formal arguments: */ /* FML$ - The fixed part of the formal arguments description */ /* */ #define FML$K_SIZE 2 #define FML$C_SIZE 2 #ifdef __NEW_STARLET typedef struct _fmldef { unsigned char fml$b_minargs; /*Minimum number of arguments */ unsigned char fml$b_maxargs; /*Maximum which include function if procedure is one */ } FMLDEF; #else /* __OLD_STARLET */ struct fmldef { unsigned char fml$b_minargs; /*Minimum number of arguments */ unsigned char fml$b_maxargs; /*Maximum which include function if procedure is one */ } ; #endif /* #ifdef __NEW_STARLET */ #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 /* __FMLDEF_LOADED */