summaryrefslogtreecommitdiff
path: root/Tests/MacRuntimePath/A/framework2.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/MacRuntimePath/A/framework2.h')
-rw-r--r--Tests/MacRuntimePath/A/framework2.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Tests/MacRuntimePath/A/framework2.h b/Tests/MacRuntimePath/A/framework2.h
new file mode 100644
index 000000000..4576d12dc
--- /dev/null
+++ b/Tests/MacRuntimePath/A/framework2.h
@@ -0,0 +1,17 @@
+
+#ifndef framework2_h
+#define framework2_h
+
+#ifdef WIN32
+# ifdef framework2_EXPORTS
+# define FRAMEWORK2_EXPORT __declspec(dllexport)
+# else
+# define FRAMEWORK2_EXPORT __declspec(dllimport)
+# endif
+#else
+# define FRAMEWORK2_EXPORT
+#endif
+
+void FRAMEWORK2_EXPORT framework2();
+
+#endif