- Timestamp:
- 08/01/08 14:47:24 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/BAL/OWBAL/Concretizations/ImageDecoder/JPEG/WK/BCJPEGImageDecoderWK.cpp
r243 r427 46 46 // Remove warnings from warning level 4. 47 47 #pragma warning(disable : 4611) // warning C4611: interaction between '_setjmp' and C++ object destruction is non-portable 48 #endif 48 49 // if ADDRESS_TAG_BIT is dfined, INT32 has been declared as a typedef in the PlatformSDK (BaseTsd.h), 50 // so we need to stop jpeglib.h from trying to #define it 51 // see here for more info: http://www.cygwin.com/ml/cygwin/2004-07/msg01051.html 52 # if defined(ADDRESS_TAG_BIT) && !defined(XMD_H) 53 # define XMD_H 54 # define VTK_JPEG_XMD_H 55 # endif 56 #endif // COMPILER(MSVC) 49 57 50 58 extern "C" { 51 59 #include "jpeglib.h" 52 60 } 61 62 #if COMPILER(MSVC) 63 # if defined(VTK_JPEG_XMD_H) 64 # undef VTK_JPEG_XMD_H 65 # undef XMD_H 66 # endif 67 #endif // COMPILER(MSVC) 53 68 54 69 #include <setjmp.h>
