#ifndef JXL_THREADS_EXPORT_H #define JXL_THREADS_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_THREADS_EXPORT #define JXL_THREADS_NO_EXPORT #if defined(_MSC_VER) #define JXL_THREADS_DEPRECATED __declspec(deprecated) #else #define JXL_THREADS_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef JXL_THREADS_DEPRECATED_EXPORT # define JXL_THREADS_DEPRECATED_EXPORT JXL_THREADS_EXPORT JXL_THREADS_DEPRECATED #endif #ifndef JXL_THREADS_DEPRECATED_NO_EXPORT # define JXL_THREADS_DEPRECATED_NO_EXPORT JXL_THREADS_NO_EXPORT JXL_THREADS_DEPRECATED #endif #endif /* JXL_THREADS_EXPORT_H */