summaryrefslogtreecommitdiff
path: root/Tests/Plugin/src/example_mod_1.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Plugin/src/example_mod_1.c')
-rw-r--r--Tests/Plugin/src/example_mod_1.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/Tests/Plugin/src/example_mod_1.c b/Tests/Plugin/src/example_mod_1.c
new file mode 100644
index 000000000..1fc733845
--- /dev/null
+++ b/Tests/Plugin/src/example_mod_1.c
@@ -0,0 +1,22 @@
+#include <example.h>
+
+#include <stdio.h>
+
+#if defined(_WIN32)
+# define MODULE_EXPORT __declspec(dllexport)
+#else
+# define MODULE_EXPORT
+#endif
+
+#ifdef __WATCOMC__
+# define MODULE_CCONV __cdecl
+#else
+# define MODULE_CCONV
+#endif
+
+MODULE_EXPORT int MODULE_CCONV example_mod_1_function(int n)
+{
+ int result = example_exe_function() + n;
+ printf("world\n");
+ return result;
+}