ThreadDlg.h
上传用户:swkcbjrc
上传日期:2016-04-02
资源大小:45277k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. // ThreadDlg.h : header file
  2. //
  3. #if !defined(AFX_THREADDLG_H__E26B0614_AC3A_4C15_9A41_8F10560D79E8__INCLUDED_)
  4. #define AFX_THREADDLG_H__E26B0614_AC3A_4C15_9A41_8F10560D79E8__INCLUDED_
  5. #include "WorkThreadPool.h" // Added by ClassView
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CThreadDlg dialog
  11. class CThreadDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. static void Test(LPVOID lpParam);
  16. CThreadDlg(CWnd* pParent = NULL); // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CThreadDlg)
  19. enum { IDD = IDD_THREAD_DIALOG };
  20. CListBox m_list;
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CThreadDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. HICON m_hIcon;
  30. // Generated message map functions
  31. //{{AFX_MSG(CThreadDlg)
  32. virtual BOOL OnInitDialog();
  33. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  34. afx_msg void OnPaint();
  35. afx_msg HCURSOR OnQueryDragIcon();
  36. afx_msg void OnDestroy();
  37. afx_msg void OnButton1();
  38. virtual void OnOK();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(AFX_THREADDLG_H__E26B0614_AC3A_4C15_9A41_8F10560D79E8__INCLUDED_)