Source code of Windows XP (NT5)
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.

54 lines
1.3 KiB

  1. #if !defined(AFX_PERFSELECTION_H__5547DA35_0860_11D3_B35C_00105A1469B7__INCLUDED_)
  2. #define AFX_PERFSELECTION_H__5547DA35_0860_11D3_B35C_00105A1469B7__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // PerfSelection.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CPerfSelection dialog
  10. class CPerfSelection : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CPerfSelection(CWnd* pParent = NULL); // standard constructor
  15. // Dialog Data
  16. //{{AFX_DATA(CPerfSelection)
  17. enum { IDD = IDD_PERFSELECTION };
  18. CEdit m_wndService;
  19. CListCtrl m_wndPerfList;
  20. CString m_strService;
  21. //}}AFX_DATA
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CPerfSelection)
  25. protected:
  26. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  27. //}}AFX_VIRTUAL
  28. public:
  29. CString GetServiceName() {return m_strService;}
  30. // Implementation
  31. protected:
  32. // Generated message map functions
  33. //{{AFX_MSG(CPerfSelection)
  34. virtual BOOL OnInitDialog();
  35. virtual void OnOK();
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. void InitList();
  39. };
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_PERFSELECTION_H__5547DA35_0860_11D3_B35C_00105A1469B7__INCLUDED_)