12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #ifndef FLAC__EXPORT_H
- #define FLAC__EXPORT_H
- #if defined(FLAC__NO_DLL)
- #define FLAC_API
- #elif defined(_MSC_VER)
- #ifdef FLAC_API_EXPORTS
- #define FLAC_API __declspec(dllexport)
- #else
- #define FLAC_API __declspec(dllimport)
- #endif
- #elif defined(FLAC__USE_VISIBILITY_ATTR)
- #define FLAC_API __attribute__ ((visibility ("default")))
- #else
- #define FLAC_API
- #endif
- #define FLAC_API_VERSION_CURRENT 11
- #define FLAC_API_VERSION_REVISION 0
- #define FLAC_API_VERSION_AGE 3
- #ifdef __cplusplus
- extern "C" {
- #endif
- extern FLAC_API int FLAC_API_SUPPORTS_OGG_FLAC
- #ifdef __cplusplus
- }
- #endif
- #endif
|