16 lines
224 B
C
16 lines
224 B
C
#ifdef WIN32
|
|
#ifdef CALLPLUGIN_LIB
|
|
#define CALLPLUGIN_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define CALLPLUGIN_EXPORT __declspec(dllimport)
|
|
#endif
|
|
#else
|
|
#define CALLPLUGIN_EXPORT
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|