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.

44 lines
1.2 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. // Copyright (c) 2002 Microsoft Corporation. All rights reserved.
  3. // Copyright (c) 2002 OSR Open Systems Resources, Inc.
  4. //
  5. // LogSessionOutputOptionDlg.h : CLogSessionOutputOptionDlg header
  6. //////////////////////////////////////////////////////////////////////////////
  7. #pragma once
  8. #include "afxwin.h"
  9. // CLogSessionOutputOptionDlg dialog
  10. class CLogSessionOutputOptionDlg : public CPropertyPage
  11. {
  12. DECLARE_DYNAMIC(CLogSessionOutputOptionDlg)
  13. public:
  14. CLogSessionOutputOptionDlg();
  15. virtual ~CLogSessionOutputOptionDlg();
  16. BOOL OnInitDialog();
  17. BOOL OnSetActive();
  18. // Dialog Data
  19. enum { IDD = IDD_LOG_OUTPUT_DIALOG };
  20. BOOL m_bTraceActive;
  21. BOOL m_bWriteListingFile;
  22. BOOL m_bWriteSummaryFile;
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  25. DECLARE_MESSAGE_MAP()
  26. public:
  27. CEdit m_listingFileName;
  28. CEdit m_summaryFileName;
  29. afx_msg void OnBnClickedListingFileCheck();
  30. afx_msg void OnBnClickedSummaryFileCheck();
  31. afx_msg void OnBnClickedListingBrowseButton();
  32. afx_msg void OnBnClickedSummaryBrowseButton();
  33. };