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.

68 lines
2.1 KiB

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