apiextractormacros.h | apiextractormacros.h | |||
---|---|---|---|---|
skipping to change at line 19 | skipping to change at line 19 | |||
#define APIEXTRACTOR_API | #define APIEXTRACTOR_API | |||
#endif | #endif | |||
#define APIEXTRACTOR_DEPRECATED(func) __declspec(deprecated) func | #define APIEXTRACTOR_DEPRECATED(func) __declspec(deprecated) func | |||
#elif __GNUC__ >= 4 | #elif __GNUC__ >= 4 | |||
#define APIEXTRACTOR_API __attribute__ ((visibility("default"))) | #define APIEXTRACTOR_API __attribute__ ((visibility("default"))) | |||
#define APIEXTRACTOR_DEPRECATED(func) func __attribute__ ((deprecated)) | #define APIEXTRACTOR_DEPRECATED(func) func __attribute__ ((deprecated)) | |||
#endif | #endif | |||
#ifndef APIEXTRACTOR_API | #ifndef APIEXTRACTOR_API | |||
#define APIEXTRACTOR_API | #define APIEXTRACTOR_API | |||
#define APIEXTRACTOR_API(func) func | #define APIEXTRACTOR_DEPRECATED(func) func | |||
#endif | #endif | |||
#endif | #endif | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||