summaryrefslogtreecommitdiff
path: root/Tests/Jump/Library/Shared/jumpShared.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Jump/Library/Shared/jumpShared.cxx')
-rw-r--r--Tests/Jump/Library/Shared/jumpShared.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/Jump/Library/Shared/jumpShared.cxx b/Tests/Jump/Library/Shared/jumpShared.cxx
new file mode 100644
index 000000000..f500058cc
--- /dev/null
+++ b/Tests/Jump/Library/Shared/jumpShared.cxx
@@ -0,0 +1,7 @@
+#ifdef _WIN32
+# define JUMP_EXPORT __declspec(dllexport)
+#else
+# define JUMP_EXPORT
+#endif
+
+JUMP_EXPORT int jumpShared() { return 0; }