我在 VS 2005 中有一个 exe,由于最近的更改而停止工作。代码进入 AfxWinMain 中的 winmain.cpp,然后窗口被销毁
if (!pThread->InitInstance())
{
if (pThread->m_pMainWnd != NULL)
{
TRACE(traceAppMsg, 0, "Warning: Destroying non-NULL m_pMainWnd\n");
pThread->m_pMainWnd->DestroyWindow(); // Comes here
}
nReturnCode = pThread->ExitInstance();
goto InitFailure;
}
请帮忙