123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- #ifndef FLAC__EXPORT_H
- #define FLAC__EXPORT_H
- #if defined(_WIN32)
- #if defined(FLAC__NO_DLL) && !(defined(DLL_EXPORT))
- #define FLAC_API
- #else
- #ifdef FLAC_API_EXPORTS
- #define FLAC_API __declspec(dllexport)
- #else
- #define FLAC_API __declspec(dllimport)
- #endif
- #endif
- #elif defined(FLAC__USE_VISIBILITY_ATTR)
- #define FLAC_API __attribute__ ((visibility ("default")))
- #else
- #define FLAC_API
- #endif
- #define FLAC_API_VERSION_CURRENT 12
- #define FLAC_API_VERSION_REVISION 0
- #define FLAC_API_VERSION_AGE 0
- #ifdef __cplusplus
- extern "C" {
- #endif
- extern FLAC_API int FLAC_API_SUPPORTS_OGG_FLAC
- #ifdef __cplusplus
- }
- #endif
- #endif
|