You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
515 B
C
25 lines
515 B
C
|
1 month ago
|
#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);
|