Fixed release mode link problem of test executable

This commit is contained in:
jdv_cp 2009-03-02 14:55:50 -08:00
parent c1350986c1
commit 2db0e6bb2e
3 changed files with 8 additions and 8 deletions

View File

@ -151,10 +151,10 @@
ForceConformanceInForLoopScope="true"
RuntimeTypeInfo="true"
UsePrecompiledHeader="0"
WarningLevel="3"
WarningLevel="4"
Detect64BitPortabilityProblems="false"
DebugInformationFormat="3"
CallingConvention="1"
CallingConvention="0"
/>
<Tool
Name="VCManagedResourceCompilerTool"

View File

@ -41,8 +41,8 @@ JLS_ERROR CheckInput(const void* pdataCompressed, int cbyteCompressed, const voi
}
}
//extern "C"
//{
extern "C"
{
JLS_ERROR __declspec(dllexport) JpegLsEncode(void* pdataCompressed, int cbyteBuffer, int* pcbyteWritten, const void* pdataUncompressed, int cbyteUncompressed, const JlsParamaters* pparams)
{
@ -155,4 +155,4 @@ __declspec(dllexport) JLS_ERROR JpegLsReadHeader(const void* pdataCompressed, in
pparams->custom = reader.GetCustomPreset();
return OK;
}
//}
}

View File

@ -46,15 +46,15 @@ struct JlsParamaters
#endif
//extern "C"
//{
extern "C"
{
CHARLS_IMEXPORT JLS_ERROR JpegLsEncode(void* pdataCompressed, int cbyteBuffer, int* pcbyteWritten, const void* pdataUncompressed, int cbyteUncompressed, const JlsParamaters* pparams);
CHARLS_IMEXPORT JLS_ERROR JpegLsDecode(void* pdataUncompressed, int cbyteUncompressed, const void* pdataCompressed, int cbyteCompressed);
CHARLS_IMEXPORT JLS_ERROR JpegLsReadHeader(const void* pdataUncompressed, int cbyteUncompressed, JlsParamaters* pparams);
CHARLS_IMEXPORT JLS_ERROR JpegLsVerifyEncode(const void* pdataUncompressed, int cbyteUncompressed, const void* pdataCompressed, int cbyteCompressed);
//CHARLS_IMEXPORT JLS_ERROR JpegLsCanEncode(JlsParamaters*);
//CHARLS_IMEXPORT JLS_ERROR JpegLsCanDecode(JlsParamaters*);
//}
}
#endif