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.

74 lines
2.0 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation 1996-2001.
  5. //
  6. // File: perfanal.h
  7. //
  8. // Contents: definition of CPerformAnalysis
  9. //
  10. //----------------------------------------------------------------------------
  11. #if !defined(AFX_PERFANAL_H__69D140AD_B23D_11D1_AB7B_00C04FB6C6FA__INCLUDED_)
  12. #define AFX_PERFANAL_H__69D140AD_B23D_11D1_AB7B_00C04FB6C6FA__INCLUDED_
  13. #if _MSC_VER >= 1000
  14. #pragma once
  15. #endif // _MSC_VER >= 1000
  16. #include "HelpDlg.h"
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CPerformAnalysis dialog
  19. class CPerformAnalysis : public CHelpDialog
  20. {
  21. // Construction
  22. public:
  23. CPerformAnalysis(CWnd * pParent, UINT nTemplateID); // standard constructor
  24. // Dialog Data
  25. //{{AFX_DATA(CPerformAnalysis)
  26. enum { IDD = IDD_PERFORM_ANALYSIS };
  27. CButton m_ctlOK;
  28. CString m_strError;
  29. CString m_strLogFile;
  30. //}}AFX_DATA
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CPerformAnalysis)
  34. protected:
  35. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. protected:
  39. // Generated message map functions
  40. //{{AFX_MSG(CPerformAnalysis)
  41. afx_msg void OnBrowse();
  42. afx_msg void OnOK();
  43. afx_msg void OnCancel();
  44. afx_msg BOOL OnInitDialog();
  45. afx_msg void OnChangeLogFile();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. virtual DWORD DoIt();
  49. CString m_strOriginalLogFile;
  50. CComponentDataImpl *m_pComponentData;
  51. HWND m_hPWnd;
  52. public:
  53. CString m_strDataBase;
  54. void SetComponentData(CComponentDataImpl *pCD) { m_pComponentData = pCD; }
  55. };
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_PERFANAL_H__69D140AD_B23D_11D1_AB7B_00C04FB6C6FA__INCLUDED_)