ThreadTestView.h
上传用户:hvpower
上传日期:2022-07-01
资源大小:2660k
文件大小:2k
源码类别:

进程与线程

开发平台:

Visual C++

  1. // ThreadTestView.h : interface of the CThreadTestView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_THREADTESTVIEW_H__3D83AD4C_DEE8_4F97_B043_0C6A6146FDAC__INCLUDED_)
  5. #define AFX_THREADTESTVIEW_H__3D83AD4C_DEE8_4F97_B043_0C6A6146FDAC__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #define MY_MSG01 WM_USER+1
  10. class CThreadTestView : public CView
  11. {
  12. protected: // create from serialization only
  13. CThreadTestView();
  14. DECLARE_DYNCREATE(CThreadTestView)
  15. // Attributes
  16. public:
  17. CThreadTestDoc* GetDocument();
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CThreadTestView)
  23. public:
  24. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CThreadTestView();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. protected:
  35. // Generated message map functions
  36. BOOL m_Begin;
  37. BOOL m_End;
  38. protected:
  39. //{{AFX_MSG(CThreadTestView)
  40. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  41. afx_msg void OnThreadBegin();
  42. afx_msg void OnUpdateThreadBegin(CCmdUI* pCmdUI);
  43. afx_msg void OnThreadKill();
  44. afx_msg void OnUpdateThreadKill(CCmdUI* pCmdUI);
  45. //}}AFX_MSG
  46. afx_msg void OnMyMsg01(WPARAM wParam,LPARAM lParam);
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. #ifndef _DEBUG  // debug version in ThreadTestView.cpp
  50. inline CThreadTestDoc* CThreadTestView::GetDocument()
  51.    { return (CThreadTestDoc*)m_pDocument; }
  52. #endif
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft eMbedded Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_THREADTESTVIEW_H__3D83AD4C_DEE8_4F97_B043_0C6A6146FDAC__INCLUDED_)