charconvfw/charconv_fw/tools/convtool/convtool.cpp
changeset 64 f66674566702
parent 40 91ef7621b7fc
equal deleted inserted replaced
59:7d891bb52a7d 64:f66674566702
    16 */
    16 */
    17 
    17 
    18 
    18 
    19 #pragma warning (disable: 4514) // unreferenced inline/local function has been removed
    19 #pragma warning (disable: 4514) // unreferenced inline/local function has been removed
    20 
    20 
    21 #include <STDIO.H>
    21 #include <stdio.h>
    22 #include <STDLIB.H>
    22 #include <stdlib.h>
    23 #include <STRING.H>
    23 #include <string.h>
    24 #include <LOCALE.H>
    24 #include <locale.h>
    25 #include <WCHAR.H>
    25 #include <wchar.h>
    26 #if defined(__VC32__)
    26 #if defined(__VC32__)
    27 #include <FCNTL.H>
    27 #include <FCNTL.H>
    28 #include <IO.H>
    28 #include <IO.H>
    29 #endif
    29 #endif
    30 
    30 
   371 	DoConversion(unicodeByteOrder, inputEncoding, outputEncoding, inputFile, outputFile);
   371 	DoConversion(unicodeByteOrder, inputEncoding, outputEncoding, inputFile, outputFile);
   372 	FlushAndCloseFiles(inputFile, outputFile);
   372 	FlushAndCloseFiles(inputFile, outputFile);
   373 	return 0;
   373 	return 0;
   374 	}
   374 	}
   375 
   375 
       
   376