UIThread.cpp
上传用户:shenmao
上传日期:2014-12-06
资源大小:238k
文件大小:1k
源码类别:

进程与线程

开发平台:

Visual C++

  1. // UIThread.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Multy3.h"
  5. #include "UIThread.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CUIThread
  13. IMPLEMENT_DYNCREATE(CUIThread, CWinThread)
  14. CUIThread::CUIThread()
  15. {
  16. }
  17. CUIThread::~CUIThread()
  18. {
  19. }
  20. BOOL CUIThread::InitInstance()
  21. {
  22. CFrameWnd* wnd=new CFrameWnd;
  23.  wnd->Create(NULL,"UI Thread Window");
  24.  wnd->ShowWindow(SW_SHOW);
  25.  wnd->UpdateWindow();
  26.  m_pMainWnd=wnd;
  27.  return TRUE;
  28. }
  29. int CUIThread::ExitInstance()
  30. {
  31. // TODO:  perform any per-thread cleanup here
  32. return CWinThread::ExitInstance();
  33. }
  34. BEGIN_MESSAGE_MAP(CUIThread, CWinThread)
  35. //{{AFX_MSG_MAP(CUIThread)
  36. // NOTE - the ClassWizard will add and remove mapping macros here.
  37. //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CUIThread message handlers