xmp.h | xmp.h | |||
---|---|---|---|---|
#ifndef XMP_H | #ifndef XMP_H | |||
#define XMP_H | #define XMP_H | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
#define XMP_VERSION "4.1.0" | #define XMP_VERSION "4.1.1" | |||
#define XMP_VERCODE 0x040100 | #define XMP_VERCODE 0x040101 | |||
#define XMP_VER_MAJOR 4 | #define XMP_VER_MAJOR 4 | |||
#define XMP_VER_MINOR 1 | #define XMP_VER_MINOR 1 | |||
#define XMP_VER_RELEASE 0 | #define XMP_VER_RELEASE 1 | |||
#if defined(_WIN32) && !defined(__CYGWIN__) | #if defined(_WIN32) && !defined(__CYGWIN__) | |||
# ifdef BUILDING_DLL | # ifdef BUILDING_DLL | |||
# define EXPORT __declspec(dllexport) | # define EXPORT __declspec(dllexport) | |||
# else | # else | |||
# define EXPORT __declspec(dllimport) | # define EXPORT __declspec(dllimport) | |||
# endif | # endif | |||
#elif __GNUC__ >= 4 || defined(__HP_cc) | #elif __GNUC__ >= 4 || defined(__HP_cc) | |||
# define EXPORT __attribute__((visibility ("default"))) | # define EXPORT __attribute__((visibility ("default"))) | |||
#elif defined(__SUNPRO_C) | #elif defined(__SUNPRO_C) | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||