[求助]关于VC编译的问题
本人初学VC,无论写什么程序,编译结果总是如下所示
--------------------Configuration: hfhthrt - Win32 Debug--------------------
Compiling...
Error spawning cl.exe
fghfghhfhfhf.obj - 1 error(s), 0 warning(s)
老是一个莫名奇妙错误,望大使们指点迷津!
SOS!!
先谢谢了
#include<afxwin.h>
class CMinApp:public CWinApp
{
public:virtual BOOL Initlnstance();
};
BOOL CMinApp::Initlnstance()
{
CFrameWnd*pFrame=new CFrameWnd;
pFrame->Create(0,_T("A Minimal MFC program"));
pFrame->ShowWindow(SW_SHOWMAXIMIZED);
pFrame->UpdateWindow();
AfxGetApp()->m_pMainWnd=pFrame;
return TRUE;
}
CMinApp MyApp;