summaryrefslogtreecommitdiff
path: root/Tests/ExportImport/Export/testLib3.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/ExportImport/Export/testLib3.c')
-rw-r--r--Tests/ExportImport/Export/testLib3.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/ExportImport/Export/testLib3.c b/Tests/ExportImport/Export/testLib3.c
new file mode 100644
index 000000000..31cec9435
--- /dev/null
+++ b/Tests/ExportImport/Export/testLib3.c
@@ -0,0 +1,10 @@
+#if defined(_WIN32) || defined(__CYGWIN__)
+# define testLib3_EXPORT __declspec(dllexport)
+# define testLib3Imp_IMPORT __declspec(dllimport)
+#else
+# define testLib3_EXPORT
+# define testLib3Imp_IMPORT
+#endif
+
+testLib3Imp_IMPORT int testLib3Imp(void);
+testLib3_EXPORT int testLib3(void) { return testLib3Imp(); }