summaryrefslogtreecommitdiffstats
path: root/Tests/InterfaceLinkLibrariesDirect/ExePlugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/InterfaceLinkLibrariesDirect/ExePlugin.c')
-rw-r--r--Tests/InterfaceLinkLibrariesDirect/ExePlugin.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/Tests/InterfaceLinkLibrariesDirect/ExePlugin.c b/Tests/InterfaceLinkLibrariesDirect/ExePlugin.c
deleted file mode 100644
index 40a261c..0000000
--- a/Tests/InterfaceLinkLibrariesDirect/ExePlugin.c
+++ /dev/null
@@ -1,21 +0,0 @@
-extern int testExePluginHelperObj(int n);
-
-#ifdef testExePluginHelperObj_NO_OBJECT
-int testExePluginHelperObj(int n)
-{
- return n;
-}
-#endif
-
-#if defined(_WIN32)
-__declspec(dllimport)
-#endif
- int testExePluginAPI(int n);
-
-#if defined(_WIN32)
-__declspec(dllexport)
-#endif
- int testExePlugin(int n)
-{
- return testExePluginAPI(n) + testExePluginHelperObj(n);
-}