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.6 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. // Copyright (c) 2002 Microsoft Corporation. All rights reserved.
  3. // Copyright (c) 2002 OSR Open Systems Resources, Inc.
  4. //
  5. // LogSessionAdvPropSht.h : interface of the CLogSessionAdvPropSht class
  6. //////////////////////////////////////////////////////////////////////////////
  7. #pragma once
  8. class CLogSessionAdvPropSht : public CPropertySheet
  9. {
  10. public:
  11. DECLARE_DYNAMIC(CLogSessionAdvPropSht)
  12. CLogSessionAdvPropSht(CWnd* pWndParent, CLogSessionPropSht *pLogSessionPropSht);
  13. // Attributes
  14. CLogSessionOutputOptionDlg m_logSessionOutputOptionDlg;
  15. CLogDisplayOptionDlg m_displayOptionPage;
  16. CLogSessionPropSht *m_pLogSessionPropSht;
  17. CLogSession *m_pLogSession;
  18. CStringArray m_originalValues;
  19. BOOL m_bAppend;
  20. BOOL m_bRealTime;
  21. BOOL m_bWriteLogFile;
  22. BOOL m_bWriteListingFile;
  23. BOOL m_bWriteSummaryFile;
  24. CString m_logFileName;
  25. CString m_displayName; // Log session display name
  26. CString m_summaryFileName; // File name for summary output
  27. CString m_listingFileName; // File name for event output
  28. // Overrides
  29. virtual BOOL OnInitDialog();
  30. // Message Handlers
  31. protected:
  32. //{{AFX_MSG(CLogSessionAdvPropSht)
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. afx_msg void OnBnClickedOk();
  36. afx_msg void OnBnClickedCancel();
  37. };