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.

53 lines
1.1 KiB

  1. // pgoutput.h : header file
  2. //
  3. #ifndef _OUTPUT_PAGE_H_
  4. #define _OUTPUT_PAGE_H_
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CRegOutputPage dialog
  7. class CRegOutputPage : public CRegPropertyPage
  8. {
  9. DECLARE_DYNCREATE(CRegOutputPage)
  10. // Construction
  11. public:
  12. CRegOutputPage();
  13. ~CRegOutputPage();
  14. // Dialog Data
  15. //{{AFX_DATA(CRegOutputPage)
  16. enum { IDD = IDD_OUTPUT };
  17. CEdit m_FileName;
  18. CString m_szFileName;
  19. DWORD m_dwMaxTraceFileSize;
  20. //}}AFX_DATA
  21. virtual BOOL InitializePage();
  22. DWORD m_dwOutputType;
  23. // Overrides
  24. // ClassWizard generate virtual function overrides
  25. //{{AFX_VIRTUAL(CRegOutputPage)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. // Generated message map functions
  32. //{{AFX_MSG(CRegOutputPage)
  33. virtual BOOL OnInitDialog();
  34. afx_msg void OnOutputClick();
  35. afx_msg void OnChangeFilename();
  36. afx_msg void OnChangeMaxTraceFileSize();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. virtual void OnOK();
  40. };
  41. #endif // _OUTPUT_PAGE_H_