Go to the documentation of this file. 1 #ifndef __S3DECODER_EXPORT_H__
2 #define __S3DECODER_EXPORT_H__
5 #if (defined(_WIN32) || defined(_WIN32_WCE)) && !defined(CYGWIN)
6 #ifdef S3DECODER_EXPORTS
7 #define S3DECODER_EXPORT __declspec(dllexport)
9 #define S3DECODER_EXPORT __declspec(dllimport)
12 #ifdef HAVE_ATTRIBUTE_VISIBILITY
13 #define S3DECODER_EXPORT __attribute__ ((visibility("default")))
15 #define S3DECODER_EXPORT
19 #if defined(__GNUC__) && __GNUC__ > 2
20 #define S3DECODER_DEPRECATED __attribute__ ((deprecated))
22 #define S3DECODER_DEPRECATED