18 lines
317 B
C
18 lines
317 B
C
|
#ifndef _DATAMANAGERGLOBAL_
|
||
|
#define _DATAMANAGERGLOBAL_
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
|
||
|
#ifdef DATAMANAGER_LIB
|
||
|
#define DATAMANAGER_DLL_API_EXPORTS __declspec(dllexport)
|
||
|
#else
|
||
|
#define DATAMANAGER_DLL_API_EXPORTS __declspec(dllimport)
|
||
|
#endif
|
||
|
|
||
|
#else
|
||
|
#define DATAMANAGER_DLL_API_EXPORTS
|
||
|
|
||
|
#endif //_WIN32
|
||
|
|
||
|
#endif //_DATAMANAGERGLOBAL_
|