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.2 KiB

  1. /********************************************************************
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. PCH_FileUpload.H
  5. Abstract:
  6. WBEM provider class definition for PCH_FileUpload class
  7. Revision History:
  8. Ghim-Sim Chua (gschua) 04/27/99
  9. - Created
  10. ********************************************************************/
  11. // Property set identification
  12. //============================
  13. #ifndef _PCH_FileUpload_H_
  14. #define _PCH_FileUpload_H_
  15. #define PROVIDER_NAME_PCH_FILEUPLOAD "PCH_FileUpload"
  16. // Property name externs -- defined in PCH_FileUpload.cpp
  17. //=================================================
  18. extern const WCHAR* pTimeStamp ;
  19. extern const WCHAR* pChange ;
  20. extern const WCHAR* pData ;
  21. extern const WCHAR* pDateAccessed ;
  22. extern const WCHAR* pDateCreated ;
  23. extern const WCHAR* pDateModified ;
  24. extern const WCHAR* pFileAttributes ;
  25. extern const WCHAR* pPath ;
  26. extern const WCHAR* pSize ;
  27. class CPCH_FileUpload : public Provider
  28. {
  29. public:
  30. // Constructor/destructor
  31. //=======================
  32. CPCH_FileUpload(const CHString& chsClassName, LPCWSTR lpszNameSpace) : Provider(chsClassName, lpszNameSpace) {};
  33. virtual ~CPCH_FileUpload() {};
  34. protected:
  35. // Reading Functions
  36. //============================
  37. virtual HRESULT EnumerateInstances(MethodContext* pMethodContext, long lFlags = 0L){ return (WBEM_E_PROVIDER_NOT_CAPABLE); };
  38. virtual HRESULT GetObject(CInstance* pInstance, long lFlags = 0L) { return (WBEM_E_PROVIDER_NOT_CAPABLE); };
  39. virtual HRESULT ExecQuery(MethodContext *pMethodContext, CFrameworkQuery& Query, long lFlags = 0L) ;
  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