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.

64 lines
1.4 KiB

  1. /*++
  2. Copyright (C) 1997-2001 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. History:
  6. --*/
  7. #if !defined(AFX_CLASSDLG_H__26DCCFF2_D79B_491E_91D0_56CC185B2036__INCLUDED_)
  8. #define AFX_CLASSDLG_H__26DCCFF2_D79B_491E_91D0_56CC185B2036__INCLUDED_
  9. #if _MSC_VER > 1000
  10. #pragma once
  11. #endif // _MSC_VER > 1000
  12. // ClassDlg.h : header file
  13. //
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CClassDlg dialog
  16. class CClassDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20. CClassDlg(CWnd* pParent = NULL); // standard constructor
  21. IWbemServices *m_pNamespace;
  22. // Dialog Data
  23. //{{AFX_DATA(CClassDlg)
  24. enum { IDD = IDD_CLASS_BROWSE };
  25. CListBox m_ctlClasses;
  26. //}}AFX_DATA
  27. CString m_strClass;
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CClassDlg)
  31. protected:
  32. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. protected:
  36. void LoadList();
  37. // Generated message map functions
  38. //{{AFX_MSG(CClassDlg)
  39. virtual void OnOK();
  40. afx_msg void OnSelchangeClasses();
  41. virtual BOOL OnInitDialog();
  42. afx_msg void OnDblclkClasses();
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_CLASSDLG_H__26DCCFF2_D79B_491E_91D0_56CC185B2036__INCLUDED_)