Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.0 KiB

  1. // pgthread.h : header file
  2. //
  3. #ifndef _THREAD_PAGE_H_
  4. #define _THREAD_PAGE_H_
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CRegThreadPage dialog
  7. class CRegThreadPage : public CRegPropertyPage
  8. {
  9. DECLARE_DYNCREATE(CRegThreadPage)
  10. // Construction
  11. public:
  12. CRegThreadPage();
  13. ~CRegThreadPage();
  14. // Dialog Data
  15. //{{AFX_DATA(CRegThreadPage)
  16. enum { IDD = IDD_THREAD };
  17. CButton m_AsyncTrace;
  18. BOOL m_fAsyncTrace;
  19. //}}AFX_DATA
  20. int m_nThreadPriority;
  21. virtual BOOL InitializePage();
  22. // Overrides
  23. // ClassWizard generate virtual function overrides
  24. //{{AFX_VIRTUAL(CRegThreadPage)
  25. protected:
  26. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. // Generated message map functions
  31. //{{AFX_MSG(CRegThreadPage)
  32. virtual BOOL OnInitDialog();
  33. afx_msg void OnPriorityClick();
  34. afx_msg void OnAsync();
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. virtual void OnOK();
  38. };
  39. #endif // _THREAD_PAGE_H_