#include <afxwin.h>
class CSimpApp:public CWinApp
{
public:
      virtual BOOL InitInstance( );
};
CSimpApp theApp;
class CMainFrame:public CFrameWnd
{
public:
     CMainFrame()
      {
         Create(NULL,"我的窗口",WS_OVERLAPPEDWINDOW,CRect(0,0,200,300));     
      };
};

BOOL CSimpApp::InitInstance( )
{
    m_pMainWnd=new CMainFrame;
    m_pMainWnd->ShowWindow(m_nCmdShow);
    m_pMainWnd->UpdateWindow();
    m_pMainWnd->MessageBox("你好!欢迎进入MFC世界!!");
    return TRUE;
}
=======================================
以上是例子
出现的错误是:
1.Ex_1_SimpMFC error LNK2019: 无法解析的外部符号 __beginthreadex ,该符号在函数 "public: int __thiscall CWinThread::CreateThread(unsigned long,unsigned int,struct _SECURITY_ATTRIBUTES *)" (?CreateThread@CWinThread@@QAEHKIPAU_SECURITY_ATTRIBUTES@@@Z) 中被引用
2.Ex_1_SimpMFC error LNK2019: 无法解析的外部符号 __endthreadex ,该符号在函数 "void __stdcall AfxEndThread(unsigned int,int)" (?AfxEndThread@@YGXIH@Z) 中被引用
3.Ex_1_SimpMFC fatal error LNK1120: 2 个无法解析的外部命令
请帮我看看是什么问题