summaryrefslogtreecommitdiff
path: root/Tests/BundleUtilities/shared.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/BundleUtilities/shared.h')
-rw-r--r--Tests/BundleUtilities/shared.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Tests/BundleUtilities/shared.h b/Tests/BundleUtilities/shared.h
new file mode 100644
index 000000000..3588fb88e
--- /dev/null
+++ b/Tests/BundleUtilities/shared.h
@@ -0,0 +1,17 @@
+
+#ifndef shared_h
+#define shared_h
+
+#ifdef WIN32
+# ifdef shared_EXPORTS
+# define SHARED_EXPORT __declspec(dllexport)
+# else
+# define SHARED_EXPORT __declspec(dllimport)
+# endif
+#else
+# define SHARED_EXPORT
+#endif
+
+void SHARED_EXPORT shared();
+
+#endif