! *********************************************************************************************************************************************************************************************************************************************************** ! Created 9-NOV-1999 09:11:23 by VAX SDL V3.2-12 Source: 9-NOV-1999 09:11:23 FORD2$:[VFORT.KIT.FORSYSDEF]CONV$ROUTINES.SDI;1 ! *********************************************************************************************************************************************************************************************************************************************************** !*** MODULE CONV$ROUTINES IDENT X-1 *** CDEC$ OPTIONS /NOALIGN ! ! 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 ! INTEGER*4 CONV$CONVERT EXTERNAL CONV$CONVERT ! ! 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 INTEGER*4 CONV$PASS_FILES EXTERNAL CONV$PASS_FILES ! ! 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 ! INTEGER*4 CONV$PASS_OPTIONS EXTERNAL CONV$PASS_OPTIONS ! ! 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 ! INTEGER*4 CONV$RECLAIM EXTERNAL CONV$RECLAIM CDEC$ END OPTIONS