19 lines
243 B
C
19 lines
243 B
C
|
#ifndef _DL_GLOBAL_
|
||
|
#define _DL_GLOBAL_
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
|
||
|
#ifdef DXFLIB_LIBRARY
|
||
|
#define DXFLIB_EXPORT __declspec(dllexport)
|
||
|
#else
|
||
|
#define DXFLIB_EXPORT __declspec(dllimport)
|
||
|
#endif
|
||
|
#else
|
||
|
|
||
|
#define DXFLIB_EXPORT
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif //_DL_GLOBAL_
|
||
|
|