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.

72 lines
1.6 KiB

  1. /*++
  2. Copyright (C) 1997-2001 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. History:
  6. --*/
  7. #if !defined(AFX_PARAMSPG_H__ED65CC8B_57CB_43A4_B579_78261F5DC324__INCLUDED_)
  8. #define AFX_PARAMSPG_H__ED65CC8B_57CB_43A4_B579_78261F5DC324__INCLUDED_
  9. #if _MSC_VER > 1000
  10. #pragma once
  11. #endif // _MSC_VER > 1000
  12. // ParamsPg.h : header file
  13. //
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CParamsPg dialog
  16. class CParamsPg : public CPropertyPage
  17. {
  18. DECLARE_DYNCREATE(CParamsPg)
  19. // Construction
  20. public:
  21. CParamsPg();
  22. ~CParamsPg();
  23. // Dialog Data
  24. //{{AFX_DATA(CParamsPg)
  25. enum { IDD = IDD_METHOD_PARAMS };
  26. CString m_strName;
  27. //}}AFX_DATA
  28. BOOL m_bNewMethod;
  29. IWbemClassObject *m_pClass;
  30. IWbemClassObjectPtr m_pObjIn,
  31. m_pObjOut;
  32. // Overrides
  33. // ClassWizard generate virtual function overrides
  34. //{{AFX_VIRTUAL(CParamsPg)
  35. public:
  36. virtual void OnOK();
  37. virtual BOOL OnKillActive();
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. protected:
  43. BOOL EditParams(DWORD dwID, IWbemClassObjectPtr &pObj);
  44. // Generated message map functions
  45. //{{AFX_MSG(CParamsPg)
  46. afx_msg void OnEditInput();
  47. afx_msg void OnEditOut();
  48. afx_msg void OnNullIn();
  49. afx_msg void OnNullOut();
  50. virtual BOOL OnInitDialog();
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_PARAMSPG_H__ED65CC8B_57CB_43A4_B579_78261F5DC324__INCLUDED_)