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


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

#endif