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.

39 lines
1.1 KiB

  1. // ActionPolicyScopeItem.h: interface for the CActionPolicyScopeItem class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ACTIONPOLICYSCOPEITEM_H__71DD9243_CA88_11D2_BD8E_0000F87A3912__INCLUDED_)
  5. #define AFX_ACTIONPOLICYSCOPEITEM_H__71DD9243_CA88_11D2_BD8E_0000F87A3912__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "HMScopeItem.h"
  10. class CActionPolicyScopeItem : public CHMScopeItem
  11. {
  12. DECLARE_DYNCREATE(CActionPolicyScopeItem)
  13. // Construction/Destruction
  14. public:
  15. CActionPolicyScopeItem();
  16. virtual ~CActionPolicyScopeItem();
  17. // Creation Members
  18. public:
  19. virtual bool Create(CScopePane* pScopePane, CScopePaneItem* pParentItem);
  20. // Results Pane View Members
  21. public:
  22. virtual CResultsPaneView* CreateResultsPaneView();
  23. // MMC Notify Handlers
  24. public:
  25. virtual HRESULT OnAddMenuItems(LPCONTEXTMENUCALLBACK piCallback,long __RPC_FAR *pInsertionAllowed);
  26. virtual HRESULT OnCommand(long lCommandID);
  27. virtual HRESULT OnExpand(BOOL bExpand) { return CHMScopeItem::OnExpand(bExpand); }
  28. };
  29. #endif // !defined(AFX_ACTIONPOLICYSCOPEITEM_H__71DD9243_CA88_11D2_BD8E_0000F87A3912__INCLUDED_)