mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-02-16 12:38:56 +00:00
14 lines
309 B
C
14 lines
309 B
C
#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
|