summaryrefslogtreecommitdiffhomepage
path: root/compat/export.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'compat/export.hpp')
-rw-r--r--compat/export.hpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/compat/export.hpp b/compat/export.hpp
new file mode 100644
index 00000000..ba10f131
--- /dev/null
+++ b/compat/export.hpp
@@ -0,0 +1,27 @@
+#pragma once
+
+#ifdef BUILD_compat
+# ifdef _WIN32
+# define OPENTRACK_COMPAT_LINKAGE __declspec(dllexport)
+# else
+# define OPENTRACK_COMPAT_LINKAGE
+# endif
+
+# ifndef _MSC_VER
+# define OPENTRACK_COMPAT_EXPORT __attribute__ ((visibility ("default"))) OPENTRACK_COMPAT_LINKAGE
+# else
+# define OPENTRACK_COMPAT_EXPORT OPENTRACK_COMPAT_LINKAGE
+# endif
+#else
+ #ifdef _WIN32
+ # define OPENTRACK_COMPAT_LINKAGE __declspec(dllimport)
+ #else
+ # define OPENTRACK_COMPAT_LINKAGE
+ #endif
+
+ #ifndef _MSC_VER
+ # define OPENTRACK_COMPAT_EXPORT __attribute__ ((visibility ("default"))) OPENTRACK_COMPAT_LINKAGE
+ #else
+ # define OPENTRACK_COMPAT_EXPORT OPENTRACK_COMPAT_LINKAGE
+ #endif
+#endif