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.

46 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. // LogFileDlg.h : interface of the CLogFileDlg class
  6. //////////////////////////////////////////////////////////////////////////////
  7. #pragma once
  8. #include "afxwin.h"
  9. // CLogFileDlg dialog
  10. class CLogFileDlg : public CDialog
  11. {
  12. DECLARE_DYNAMIC(CLogFileDlg)
  13. public:
  14. CLogFileDlg(CWnd* pParent, CLogSession *pLogSession);
  15. virtual ~CLogFileDlg();
  16. BOOL OnInitDialog();
  17. // Dialog Data
  18. enum { IDD = IDD_LOG_FILE_DIALOG };
  19. protected:
  20. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  21. DECLARE_MESSAGE_MAP()
  22. public:
  23. afx_msg void OnBnClickedLogfileBrowseButton();
  24. afx_msg void OnBnClickedListingFileCheck();
  25. afx_msg void OnBnClickedSummaryFileCheck();
  26. afx_msg void OnBnClickedOk();
  27. CEdit m_logFileName;
  28. CLogSession *m_pLogSession;
  29. CEdit m_listingFile;
  30. CEdit m_summaryFile;
  31. CString m_listingFileName;
  32. CString m_summaryFileName;
  33. BOOL m_bWriteListingFile;
  34. BOOL m_bWriteSummaryFile;
  35. };