WordThread.cpp
上传用户:zcy791212
上传日期:2013-03-06
资源大小:196k
文件大小:1k
源码类别:

Modem编程

开发平台:

Visual C++

  1. // WordThread.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "vc_demo.h"
  5. #include "WordThread.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CWordThread
  13. IMPLEMENT_DYNCREATE(CWordThread, CWinThread)
  14. CWordThread::CWordThread()
  15. {
  16. }
  17. CWordThread::~CWordThread()
  18. {
  19. }
  20. BOOL CWordThread::InitInstance()
  21. {
  22. // TODO:  perform and per-thread initialization here
  23. return TRUE;
  24. }
  25. int CWordThread::ExitInstance()
  26. {
  27. // TODO:  perform any per-thread cleanup here
  28. return CWinThread::ExitInstance();
  29. }
  30. BEGIN_MESSAGE_MAP(CWordThread, CWinThread)
  31. //{{AFX_MSG_MAP(CWordThread)
  32. // NOTE - the ClassWizard will add and remove mapping macros here.
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CWordThread message handlers
  37. int  CWordThread::Run()
  38. {
  39. //this thread is used to write received data to file
  40. return CWinThread::Run();
  41. }