我可以從C++的Dll使用使用在C++這種方法C#訪問的方法:調用C++「INT WINAPI _tWinMain」從C#
extern "C"
{
__declspec(dllexport) void DisplayHelloFromDLL()
{
printf ("Hello from DLL !\n");
}
}
這個偉大工程......但我一起工作的解決方案以此爲切入點:
extern "C" int WINAPI _tWinMain(HINSTANCE hInstance,
HINSTANCE /*hPrevInstance*/,
LPTSTR lpCmdLine,
int /*nShowCmd*/)
有沒有一種方法,我可以訪問此像我已經與__declspec
方法呢?
乾杯
DLL沒有WinMain入口點。 – 2011-02-14 15:06:03