Jiqi1.cpp
上传用户:dtengfei
上传日期:2013-01-16
资源大小:393k
文件大小:1k
源码类别:

医药行业

开发平台:

Visual C++

  1. // Jiqi1.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "心跳检测.h"
  5. #include "Jiqi1.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CJiqi
  13. IMPLEMENT_DYNCREATE(CJiqi, CWinThread)
  14. CJiqi::CJiqi()
  15. {
  16. }
  17. CJiqi::~CJiqi()
  18. {
  19. }
  20. BOOL CJiqi::InitInstance()
  21. {
  22. // TODO:  perform and per-thread initialization here
  23. return TRUE;
  24. }
  25. int CJiqi::ExitInstance()
  26. {
  27. // TODO:  perform any per-thread cleanup here
  28. return CWinThread::ExitInstance();
  29. }
  30. BEGIN_MESSAGE_MAP(CJiqi, CWinThread)
  31. //{{AFX_MSG_MAP(CJiqi)
  32. // NOTE - the ClassWizard will add and remove mapping macros here.
  33. //}}AFX_MSG_MAP
  34. ON_THREAD_MESSAGE(WM_CELIANG,Work)
  35. ON_THREAD_MESSAGE(WM_THREADEND,QuitPrg)
  36. END_MESSAGE_MAP()
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CJiqi message handlers
  39. void CJiqi::Work(LPARAM lParam)
  40. {
  41. struct ThreadPoint *TP;
  42. TP=(struct ThreadPoint *)lParam;
  43. CControl m_Dlg;
  44. int i;
  45. for(i=0;i<=TP->WholeNumber;i++)
  46. {
  47. if(TP->runing)
  48. {
  49. TP->data[i]=m_Dlg.Collectdata();
  50. TP->PointNumber=i;
  51. ::PostThreadMessage(m_MainThreadID,WM_REFRESH,NULL,NULL);
  52. Sleep(50);
  53. }
  54. else break;
  55. }
  56. TP->runing=FALSE;
  57. }
  58. void CJiqi::QuitPrg()
  59. {
  60. AfxEndThread(0);
  61. }