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.

42 lines
1.8 KiB

  1. // SoftwareFeatureAction.h: interface for the CSoftwareFeatureAction class.
  2. //
  3. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  4. //
  5. //////////////////////////////////////////////////////////////////////
  6. #if !defined(AFX_SOFTWAREFEATUREACTION_H__01FCD010_D70E_11D2_B235_00A0C9954921__INCLUDED_)
  7. #define AFX_SOFTWAREFEATUREACTION_H__01FCD010_D70E_11D2_B235_00A0C9954921__INCLUDED_
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11. #include "GenericClass.h"
  12. class CSoftwareFeatureAction : public CGenericClass
  13. {
  14. public:
  15. CSoftwareFeatureAction(CRequestObject *pObj, IWbemServices *pNamespace, IWbemContext *pCtx = NULL);
  16. virtual ~CSoftwareFeatureAction();
  17. virtual HRESULT PutInst(CRequestObject *pObj, IWbemClassObject *pInst, IWbemObjectSink *pHandler, IWbemContext *pCtx)
  18. {return WBEM_E_NOT_SUPPORTED;}
  19. virtual HRESULT CreateObject(IWbemObjectSink *pHandler, ACTIONTYPE atAction);
  20. protected:
  21. HRESULT SoftwareFeatureClassInfo(IWbemObjectSink *pHandler, ACTIONTYPE atAction,
  22. CRequestObject *pActionData, CRequestObject *pFeatureData);
  23. HRESULT SoftwareFeatureExtension(IWbemObjectSink *pHandler, ACTIONTYPE atAction,
  24. CRequestObject *pActionData, CRequestObject *pFeatureData);
  25. HRESULT SoftwareFeaturePublish(IWbemObjectSink *pHandler, ACTIONTYPE atAction,
  26. CRequestObject *pActionData, CRequestObject *pFeatureData);
  27. HRESULT SoftwareFeatureShortcut(IWbemObjectSink *pHandler, ACTIONTYPE atAction,
  28. CRequestObject *pActionData, CRequestObject *pFeatureData);
  29. HRESULT SoftwareFeatureTypeLibrary(IWbemObjectSink *pHandler, ACTIONTYPE atAction,
  30. CRequestObject *pActionData, CRequestObject *pFeatureData);
  31. };
  32. #endif // !defined(AFX_SOFTWAREFEATUREACTION_H__01FCD010_D70E_11D2_B235_00A0C9954921__INCLUDED_)