Go to the documentation of this file.00001 #ifndef COIL_LIBDLLTEST_H
00002 #define COIL_LIBDLLTEST_H
00003
00004 #include <coil/DynamicLib.h>
00005
00006 #if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)
00007 #define DynamicLib_EXPORT __declspec(dllexport)
00008 extern "C"
00009 {
00010 DynamicLib_EXPORT int ForExternTest(void);
00011 }
00012 #else
00013 extern "C"
00014 {
00015 int ForExternTest(void);
00016 }
00017 #endif
00018
00019
00020
00021 namespace coil
00022 {
00023 class libDllTest
00024 {
00025 public:
00026 libDllTest(){};
00027 ~libDllTest(){};
00028 static int FuncTest(void);
00029 };
00030 };
00031
00032 #endif