summaryrefslogtreecommitdiff
path: root/examples/msvc6/TestPlugIn/TestPlugIn.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/msvc6/TestPlugIn/TestPlugIn.h')
-rw-r--r--examples/msvc6/TestPlugIn/TestPlugIn.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/examples/msvc6/TestPlugIn/TestPlugIn.h b/examples/msvc6/TestPlugIn/TestPlugIn.h
deleted file mode 100644
index 919ce9a..0000000
--- a/examples/msvc6/TestPlugIn/TestPlugIn.h
+++ /dev/null
@@ -1,12 +0,0 @@
-
-// The following ifdef block is the standard way of creating macros which make exporting
-// from a DLL simpler. All files within this DLL are compiled with the TESTPLUGIN_EXPORTS
-// symbol defined on the command line. this symbol should not be defined on any project
-// that uses this DLL. This way any other project whose source files include this file see
-// TESTPLUGIN_API functions as being imported from a DLL, wheras this DLL sees symbols
-// defined with this macro as being exported.
-#ifdef TESTPLUGIN_EXPORTS
-#define TESTPLUGIN_API __declspec(dllexport)
-#else
-#define TESTPLUGIN_API __declspec(dllimport)
-#endif