summaryrefslogtreecommitdiffstats
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.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/Jump/Library/Shared/jumpShared.cxx b/Tests/Jump/Library/Shared/jumpShared.cxx
new file mode 100644
index 0000000..7c4dee9
--- /dev/null
+++ b/Tests/Jump/Library/Shared/jumpShared.cxx
@@ -0,0 +1,10 @@
+#ifdef _WIN32
+#define JUMP_EXPORT __declspec(dllexport)
+#else
+#define JUMP_EXPORT
+#endif
+
+JUMP_EXPORT int jumpShared()
+{
+ return 0;
+}