标签: c++ dll mfc
我正在尝试将dll文件链接到MFC template中的项目,只需简单地调用它并包含头文件即可。但是每当我尝试创建assertion failure类的头文件的对象时,我都会得到dll。 这两个类都是CWinApp,我进一步调试,发现两个mfc WinApp应用程序都试图调用相同的afxgetThread()函数,这导致assertion failure。有人可以帮我从这里出去吗 ? 谢谢。
dll
MFC template
assertion failure
CWinApp
mfc WinApp
afxgetThread()
答案 0 :(得分:3)
引自CWinApp: The Application Class:
构建在框架上的应用程序必须只有一个派生自CWinApp的类的对象。