summaryrefslogtreecommitdiffhomepage
path: root/csv/export.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'csv/export.hpp')
-rw-r--r--csv/export.hpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/csv/export.hpp b/csv/export.hpp
index 506833c4..eb8d723f 100644
--- a/csv/export.hpp
+++ b/csv/export.hpp
@@ -14,5 +14,15 @@
# endif
#else
-# include "import.hpp"
+ #ifdef _WIN32
+ # define OPENTRACK_CSV_LINKAGE __declspec(dllimport)
+ #else
+ # define OPENTRACK_CSV_LINKAGE
+ #endif
+
+ #ifndef _MSC_VER
+ # define OPENTRACK_CSV_EXPORT __attribute__ ((visibility ("default"))) OPENTRACK_CSV_LINKAGE
+ #else
+ # define OPENTRACK_CSV_EXPORT OPENTRACK_CSV_LINKAGE
+ #endif
#endif