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.

45 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. // LogSessionPropSht.h : CLogSessionPropSht header
  6. //////////////////////////////////////////////////////////////////////////////
  7. #pragma once
  8. class CLogSessionPropSht : public CPropertySheet
  9. {
  10. public:
  11. DECLARE_DYNAMIC(CLogSessionPropSht)
  12. CLogSessionPropSht(CWnd* pWndParent, CLogSession *pLogSession);
  13. // Attributes
  14. CLogSessionInformationDlg m_logSessionInformationDlg;
  15. CProviderSetupDlg m_providerSetupPage;
  16. CLogSession *m_pLogSession;
  17. CStringArray m_originalValues;
  18. BOOL m_bAppend;
  19. BOOL m_bRealTime;
  20. BOOL m_bWriteLogFile;
  21. CString m_logFileName;
  22. CString m_displayName; // Log session display name
  23. BOOL m_bWriteListingFile;
  24. BOOL m_bWriteSummaryFile;
  25. CString m_listingFileName; // File name for event output
  26. CString m_summaryFileName; // File name for summary output
  27. CStringArray m_logSessionValues;
  28. LONG m_groupID;
  29. // Overrides
  30. virtual BOOL OnInitDialog();
  31. // Message Handlers
  32. protected:
  33. //{{AFX_MSG(CLogSessionPropSht)
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. afx_msg void OnBnClickedOk();
  37. afx_msg void OnBnClickedFinish();
  38. afx_msg void OnBnClickedCancel();
  39. };