summaryrefslogtreecommitdiffhomepage
path: root/opentrack/export.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-07-06 07:38:38 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-07-06 12:07:48 +0200
commitc2f870b244618f848c77d4bd8b02a8775907822d (patch)
treefbfd69411dcbe7366efa2cbe981a25584a5793d0 /opentrack/export.hpp
parent069ebb6212aa096adb1ded0823ac4194db9b0d03 (diff)
csv, compat, logic, api: open-code import.hpp
Diffstat (limited to 'opentrack/export.hpp')
-rw-r--r--opentrack/export.hpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/opentrack/export.hpp b/opentrack/export.hpp
index 96daef53..a9f3521e 100644
--- a/opentrack/export.hpp
+++ b/opentrack/export.hpp
@@ -14,5 +14,15 @@
# endif
#else
-# include "import.hpp"
+ #ifdef _WIN32
+ # define OPENTRACK_API_LINKAGE __declspec(dllimport)
+ #else
+ # define OPENTRACK_API_LINKAGE
+ #endif
+
+ #ifndef _MSC_VER
+ # define OPENTRACK_API_EXPORT __attribute__ ((visibility ("default"))) OPENTRACK_API_LINKAGE
+ #else
+ # define OPENTRACK_API_EXPORT OPENTRACK_API_LINKAGE
+ #endif
#endif