You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
309 B
13 lines
309 B
#if defined(DXFLIB_DLL)
|
|
# ifdef _WIN32
|
|
# if defined(DXFLIB_LIBRARY)
|
|
# define DXFLIB_EXPORT __declspec( dllexport )
|
|
# else
|
|
# define DXFLIB_EXPORT __declspec( dllimport )
|
|
# endif
|
|
# else
|
|
# define DXFLIB_EXPORT
|
|
# endif
|
|
#else
|
|
# define DXFLIB_EXPORT
|
|
#endif
|