sch_api.h
Go to the documentation of this file.
1 #if defined WIN32 || defined __CYGWIN__
2 # ifdef sch_EXPORTS
3 # define SCH_API __declspec(dllexport)
4 # elif defined schd_EXPORTS
5 # define SCH_API __declspec(dllexport)
6 # else
7 # define SCH_API __declspec(dllimport)
8 # endif
9 #else
10 # if __GNUC__ >= 4
11 # define SCH_API __attribute__((visibility("default")))
12 # else
13 # define SCH_API
14 # endif
15 #endif