/********************************************************************************************************************************/ /* Created: 30-Mar-2010 17:29:24 by OpenVMS SDL EV3-3 */ /* Source: 30-MAR-2010 17:29:18 $1$DGA7274:[STARLET_H.SRC]CONV$ROUTINES.SDI;1 */ /********************************************************************************************************************************/ /*** MODULE CONV$ROUTINES IDENT X-1 ***/ #ifndef __CONV_ROUTINES_LOADED #define __CONV_ROUTINES_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 /* */ /* Convert (CONV) Routines */ /* */ /* */ /* CONV$CONVERT - Initiate conversion */ /* */ /* status = CONV$CONVERT ([status_block_address] [,flags]) */ /* */ /* status_block_address - Array of longwords into which will be written */ /* statistics about the conversion. The first */ /* element contains the number of following elements */ /* flags - Flags to control the conversion */ /* */ #define conv$convert CONV$CONVERT #ifdef __NEW_STARLET unsigned int conv$convert( __optional_params ); #else /* __OLD_STARLET */ unsigned int conv$convert(__unknown_params); #endif /* #ifdef __NEW_STARLET */ /* */ /* CONV$PASS_FILES - Specify conversion files */ /* */ /* status = CONV$PASS_FILES (input_filespec, output_filespec */ /* [,fdl_filespec] [,exception_filespec] */ /* [,flags]) */ /* */ /* input_filespec - File to be converted */ /* output_filespec - Destination file */ /* fdl_filespec - File containing FDL for conversion */ /* exception_filespec - File to contain exception records */ /* flags - Flags controlling conversion */ #define conv$pass_files CONV$PASS_FILES #ifdef __NEW_STARLET unsigned int conv$pass_files( void *input_file_spec, void *output_file_spec, __optional_params ); #else /* __OLD_STARLET */ unsigned int conv$pass_files(__unknown_params); #endif /* #ifdef __NEW_STARLET */ /* */ /* CONV$PASS_OPTIONS - Specify processing options */ /* */ /* status = CONV$PASS_OPTIONS ([parameter_list_address] [,flags]) */ /* */ /* parameter_list_address - Array specifying convert options */ /* flags - Flags controlling conversion */ /* */ #define conv$pass_options CONV$PASS_OPTIONS #ifdef __NEW_STARLET unsigned int conv$pass_options( __optional_params ); #else /* __OLD_STARLET */ unsigned int conv$pass_options(__unknown_params); #endif /* #ifdef __NEW_STARLET */ /* */ /* CONV$RECLAIM - CONVERT/RECLAIM */ /* */ /* status - CONV$RECLAIM (input_filespec [,statistics_blk]) */ /* */ /* input_filespec - File to be converted */ /* statistics_blk - Array to receive statistics; first longword specifies */ /* number of statistics */ /* */ #define conv$reclaim CONV$RECLAIM #ifdef __NEW_STARLET unsigned int conv$reclaim( void *input_filespec, __optional_params); #else /* __OLD_STARLET */ unsigned int conv$reclaim(__unknown_params); #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 /* __CONV_ROUTINES_LOADED */