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.

56 lines
1.4 KiB

  1. #pragma once
  2. #include "afxwin.h"
  3. // CLogSessionOptionsDlg dialog
  4. class CLogSessionOptionsDlg : public CDialog
  5. {
  6. DECLARE_DYNAMIC(CLogSessionOptionsDlg)
  7. public:
  8. CLogSessionOptionsDlg(CWnd* pParent, CLogSession *pLogSession);
  9. virtual ~CLogSessionOptionsDlg();
  10. int OnInitDialog();
  11. // Dialog Data
  12. enum { IDD = IDD_LOG_SESSION_OPTIONS_DIALOG };
  13. protected:
  14. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  15. CLogSession *m_pLogSession;
  16. LONG m_DisplayEnableFlags; // Enable flags for the log session output
  17. DECLARE_MESSAGE_MAP()
  18. public:
  19. afx_msg void OnBnClickedOk();
  20. afx_msg void OnBnClickedLogfileBrowseButton();
  21. afx_msg void OnTcnSelchangeTab1(NMHDR *pNMHDR, LRESULT *pResult);
  22. CButton m_DisplayMaxBuf;
  23. CButton m_DisplayMinBuf;
  24. CButton m_DisplayBufferSize;
  25. CButton m_DisplayFlushTime;
  26. CButton m_DisplayTraceLevel;
  27. CButton m_DisplayDecayTime;
  28. CButton m_DisplayNewFile;
  29. CButton m_DisplayCir;
  30. CButton m_DisplaySeq;
  31. CButton m_DisplayFlags;
  32. CEdit m_LogSessionName;
  33. CEdit m_MaxBufValue;
  34. CEdit m_MinBufValue;
  35. CEdit m_BufferSizeValue;
  36. CEdit m_FlushTimeValue;
  37. CEdit m_TraceLevelValue;
  38. CEdit m_DecayTimeValue;
  39. CEdit m_NewFileValue;
  40. CEdit m_CirValue;
  41. CEdit m_FlagsValue;
  42. CEdit m_LogFileName;
  43. CButton m_AppendToLogFile;
  44. CEdit m_SeqValue;
  45. };