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

进程与线程

开发平台:

Visual C++

  1. #if !defined(AFX_CALCULATETHREAD_H__05FE84A7_33E6_462F_997C_093FD59FD186__INCLUDED_)
  2. #define AFX_CALCULATETHREAD_H__05FE84A7_33E6_462F_997C_093FD59FD186__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // CalculateThread.h : header file
  7. //
  8. #include "Multy7Dlg.h"
  9. #define WM_CALCULATE WM_USER+1 
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CCalculateThread thread
  12. class CCalculateThread : public CWinThread
  13. {
  14. DECLARE_DYNCREATE(CCalculateThread)
  15. protected:
  16. CCalculateThread();           // protected constructor used by dynamic creation
  17. afx_msg LONG OnCalculate(UINT wParam,LONG lParam);
  18. // Attributes
  19. public:
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CCalculateThread)
  25. public:
  26. virtual BOOL InitInstance();
  27. virtual int ExitInstance();
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. virtual ~CCalculateThread();
  32. // Generated message map functions
  33. //{{AFX_MSG(CCalculateThread)
  34. // NOTE - the ClassWizard will add and remove member functions here.
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. #endif // !defined(AFX_CALCULATETHREAD_H__05FE84A7_33E6_462F_997C_093FD59FD186__INCLUDED_)