aboutsummaryrefslogtreecommitdiffstats
path: root/apiextractormacros.h
blob: 3364acf14ca21809d462a30c48534e1994ec46dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef APIEXTRACTORMACROS_H
#define APIEXTRACTORMACROS_H


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

#ifndef APIEXTRACTOR_API
    #define APIEXTRACTOR_API
    #define APIEXTRACTOR_DEPRECATED(func) func
#endif

#endif