#ifndef JXL_EXPORT_H #define JXL_EXPORT_H // The original config file foresaw DLL exports (but even Windows // builds generated GCC syntax, so maybe it was broken all along). // We don't care. #define JXL_EXPORT #define JXL_NO_EXPORT #if defined(_MSC_VER) #define JXL_DEPRECATED __declspec(deprecated) #else #define JXL_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef JXL_DEPRECATED_EXPORT # define JXL_DEPRECATED_EXPORT JXL_EXPORT JXL_DEPRECATED #endif #ifndef JXL_DEPRECATED_NO_EXPORT # define JXL_DEPRECATED_NO_EXPORT JXL_NO_EXPORT JXL_DEPRECATED #endif #endif /* JXL_EXPORT_H */