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