MSpin-JCoupling  2.1
coreexport.h
1 /***************************************************************************
2  jplugin.cpp - description
3  -------------------
4  author : Armando Navarro-Vazquez
5  email : armando.deus@gmail.com
6  ***************************************************************************/
7 
8 #ifndef BUILD_MAGNES_CORE_H
9 #define BUILD_MAGNES_CORE_H
10 
11 
12 #ifdef WIN32
13 #ifdef MAGNES_CORE_DLL
14 #define MAGNES_CORE_EXPORT __declspec(dllexport)
15 #define MAGNES_CORE_API __declspec(dllexport)
16 #else
17 #define MAGNES_CORE_API __declspec(dllimport)
18 #endif
19 #else
20 #define MAGNES_CORE_EXPORT
21 #define MAGNES_CORE_API
22 #endif
23 
24 #endif //BUILD_MAGNES_CORE_H