#pragma once #pragma warning(disable : 4996) #if defined(_DEBUG) #ifndef LIB_PATH #define LIB_PATH "" #endif #pragma comment(lib, LIB_PATH "FormatConversionD.lib") #pragma message("Automatically linking with FormatConversionD.lib") #else #ifndef LIB_PATH #define LIB_PATH "" #endif #pragma comment(lib, LIB_PATH "FormatConversion.lib") #pragma message("Automatically linking with FormatConversion.lib") #endif extern "C" __declspec(dllimport) int FromDFDToDFD4(char* inputFile, char* outputFile);