00001 // -*- C++ -*- 00002 00003 #include <iostream> 00004 #include <string> 00005 00006 #include "libDll.h" 00007 00008 00009 namespace coil 00010 { 00014 int libDllTest::FuncTest(void) 00015 { 00016 std::cout<<"ForExternTest"<<std::endl; 00017 return 0xdeadbeef; 00018 } 00019 }; 00020 00024 extern "C" 00025 { 00026 int ForExternTest(void) 00027 { 00028 return coil::libDllTest::FuncTest(); 00029 } 00030 }; 00031