aboutsummaryrefslogtreecommitdiffstats
path: root/ApiExtractor/apiextractormacros.h
blob: b2e30315508aff658ae7e923bf806bd78279dfd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef APIEXTRACTORMACROS_H
#define APIEXTRACTORMACROS_H


// APIEXTRACTOR_API is used for the public API symbols.
#if defined _WIN32
    #define APIEXTRACTOR_DEPRECATED(func) __declspec(deprecated) func
#elif __GNUC__ >= 4
    #define APIEXTRACTOR_DEPRECATED(func) func __attribute__ ((deprecated))
#else
    #define APIEXTRACTOR_DEPRECATED(func) func
#endif
#endif