回复 3楼 future1699
以下是appmodul.cpp中的_tWinMain函数,调试开始时,从这里开始运行,按F11之后,始终停留在return语句出,无法进入函数内部。同时,弹出程序运行界面,用鼠标可以在界面上进行操作。但无法单步运行进入程序里面。
extern "C" int WINAPI
_tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPTSTR lpCmdLine, int nCmdShow)
{
// call shared/exported WinMain
return AfxWinMain(hInstance, hPrevInstance, lpCmdLine, nCmdShow);
}