! ******************************************************************************************************************************** ! Created: 7-MAR-2012 18:15:04 by OpenVMS SDL IA64-2 ! Source: 07-MAR-2012 18:15:04 DUMPD5$:[RAMYA.FOR_ECO]CONV$ROUTINES.SDI;1 ! ******************************************************************************************************************************** !*** MODULE CONV$ROUTINES IDENT X-1 *** !DEC$ OPTIONS/ALIGN=(RECORDS=PACKED,COMMONS=PACKED)/NOWARN ! ! 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 !DEC$ END OPTIONS