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.

49 lines
1.4 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. // Copyright (c) 2002 Microsoft Corporation. All rights reserved.
  3. // Copyright (c) 2002 OSR Open Systems Resources, Inc.
  4. //
  5. // LogSessionInformationDlg.h : CLogSessionInformationDlg header
  6. //////////////////////////////////////////////////////////////////////////////
  7. #pragma once
  8. #include "afxwin.h"
  9. // CLogSessionInformationDlg dialog
  10. class CLogSessionInformationDlg : public CPropertyPage
  11. {
  12. DECLARE_DYNAMIC(CLogSessionInformationDlg)
  13. public:
  14. CLogSessionInformationDlg();
  15. virtual ~CLogSessionInformationDlg();
  16. BOOL OnInitDialog();
  17. BOOL OnSetActive();
  18. BOOL OnKillActive();
  19. // Dialog Data
  20. enum { IDD = IDD_LOG_SESSION_INFORMATION_DIALOG };
  21. protected:
  22. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  23. DECLARE_MESSAGE_MAP()
  24. public:
  25. afx_msg void OnBnClickedLogfileBrowseButton();
  26. afx_msg void OnBnClickedWriteLogfileCheck();
  27. afx_msg void OnBnClickedAdvancedButton();
  28. CEdit m_logSessionName;
  29. CEdit m_logFileName;
  30. CButton m_appendLogFile;
  31. CButton m_realTime;
  32. CLogSession *m_pLogSession;
  33. BOOL m_bAppend;
  34. BOOL m_bRealTime;
  35. BOOL m_bWriteLogFile;
  36. CString m_logFileNameString;
  37. CString m_displayNameString;
  38. };