/********************************************************************************************************************************/ /* Created: 15-MAR-2001 23:37:13 by OpenVMS SDL EV1-33 */ /* Source: 15-MAR-2001 23:35:04 _$11$DUA933:[BUILD.SDL]CONV$ROUTINES.SDI;1 */ /********************************************************************************************************************************/ /*** MODULE CONV$ROUTINES IDENT X-1 ***/ #ifndef __CONV$ROUTINES_LOADED #define __CONV$ROUTINES_LOADED 1 #pragma nostandard #ifdef __cplusplus extern "C" { #define __unknown_params ... #else #define __unknown_params #endif #if !defined(__VAXC) && !defined(VAXC) #define __struct struct #define __union union #else #define __struct variant_struct #define __union variant_union #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 */ /* */ unsigned int conv$convert(__unknown_params); /* */ /* 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 */ unsigned int conv$pass_files(__unknown_params); /* */ /* 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 */ /* */ unsigned int conv$pass_options(__unknown_params); /* */ /* 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 */ /* */ unsigned int conv$reclaim(__unknown_params); #ifdef __cplusplus } #endif #pragma standard #endif /* __CONV$ROUTINES_LOADED */