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.

64 lines
2.0 KiB

  1. /********************************************************************
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. PCH_ProgramGroup.H
  5. Abstract:
  6. WBEM provider class definition for PCH_ProgramGroup class
  7. Revision History:
  8. Ghim-Sim Chua (gschua) 04/27/99
  9. - Created
  10. ********************************************************************/
  11. // Property set identification
  12. //============================
  13. #ifndef _PCH_ProgramGroup_H_
  14. #define _PCH_ProgramGroup_H_
  15. #define PROVIDER_NAME_PCH_PROGRAMGROUP "PCH_ProgramGroup"
  16. // Property name externs -- defined in PCH_ProgramGroup.cpp
  17. //=================================================
  18. extern const WCHAR* pTimeStamp ;
  19. extern const WCHAR* pChange ;
  20. extern const WCHAR* pGroupName ;
  21. extern const WCHAR* pName ;
  22. extern const WCHAR* pUsername ;
  23. class CPCH_ProgramGroup : public Provider
  24. {
  25. public:
  26. // Constructor/destructor
  27. //=======================
  28. CPCH_ProgramGroup(const CHString& chsClassName, LPCWSTR lpszNameSpace) : Provider(chsClassName, lpszNameSpace) {};
  29. virtual ~CPCH_ProgramGroup() {};
  30. protected:
  31. // Reading Functions
  32. //============================
  33. virtual HRESULT EnumerateInstances(MethodContext* pMethodContext, long lFlags = 0L);
  34. virtual HRESULT GetObject(CInstance* pInstance, long lFlags = 0L) { return (WBEM_E_PROVIDER_NOT_CAPABLE); };
  35. virtual HRESULT ExecQuery(MethodContext *pMethodContext, CFrameworkQuery& Query, long lFlags = 0L) { return (WBEM_E_PROVIDER_NOT_CAPABLE); };
  36. // Writing Functions
  37. //============================
  38. virtual HRESULT PutInstance(const CInstance& Instance, long lFlags = 0L) { return (WBEM_E_PROVIDER_NOT_CAPABLE); };
  39. virtual HRESULT DeleteInstance(const CInstance& Instance, long lFlags = 0L) { return (WBEM_E_PROVIDER_NOT_CAPABLE); };
  40. // Other Functions
  41. virtual HRESULT ExecMethod( const CInstance& Instance,
  42. const BSTR bstrMethodName,
  43. CInstance *pInParams,
  44. CInstance *pOutParams,
  45. long lFlags = 0L ) { return (WBEM_E_PROVIDER_NOT_CAPABLE); };
  46. } ;
  47. #endif