error LNK2005: _DllMain@12 已经在 dllmain.obj 中定义
在dllmian.cpp文件里添加
#ifdef _X86_
extern "C" { int _afxForceUSRDLL; }
#else
extern "C" { int __afxForceUSRDLL; }
#endif
在dllmian.cpp文件里添加
#ifdef _X86_
extern "C" { int _afxForceUSRDLL; }
#else
extern "C" { int __afxForceUSRDLL; }
#endif