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.

62 lines
2.4 KiB

  1. //
  2. // Microsoft Windows Media Technologies
  3. // � 1999 Microsoft Corporation. All rights reserved.
  4. //
  5. // Refer to your End User License Agreement for details on your rights/restrictions to use these sample files.
  6. //
  7. // MSHDSP.DLL is a sample WMDM Service Provider(SP) that enumerates fixed drives.
  8. // This sample shows you how to implement an SP according to the WMDM documentation.
  9. // This sample uses fixed drives on your PC to emulate portable media, and
  10. // shows the relationship between different interfaces and objects. Each hard disk
  11. // volume is enumerated as a device and directories and files are enumerated as
  12. // Storage objects under respective devices. You can copy non-SDMI compliant content
  13. // to any device that this SP enumerates. To copy an SDMI compliant content to a
  14. // device, the device must be able to report a hardware embedded serial number.
  15. // Hard disks do not have such serial numbers.
  16. //
  17. // To build this SP, you are recommended to use the MSHDSP.DSP file under Microsoft
  18. // Visual C++ 6.0 and run REGSVR32.EXE to register the resulting MSHDSP.DLL. You can
  19. // then build the sample application from the WMDMAPP directory to see how it gets
  20. // loaded by the application. However, you need to obtain a certificate from
  21. // Microsoft to actually run this SP. This certificate would be in the KEY.C file
  22. // under the INCLUDE directory for one level up.
  23. // MDSPEnumStorage.h : Declaration of the CMDSPEnumStorage
  24. #ifndef __MDSPENUMSTORAGE_H_
  25. #define __MDSPENUMSTORAGE_H_
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CMDSPEnumStorage
  28. class ATL_NO_VTABLE CMDSPEnumStorage :
  29. public CComObjectRootEx<CComSingleThreadModel>,
  30. public CComCoClass<CMDSPEnumStorage, &CLSID_MDSPEnumStorage>,
  31. public IMDSPEnumStorage
  32. {
  33. public:
  34. CMDSPEnumStorage();
  35. ~CMDSPEnumStorage();
  36. DECLARE_REGISTRY_RESOURCEID(IDR_MDSPENUMSTORAGE)
  37. BEGIN_COM_MAP(CMDSPEnumStorage)
  38. COM_INTERFACE_ENTRY(IMDSPEnumStorage)
  39. END_COM_MAP()
  40. // IMDSPEnumStorage
  41. public:
  42. WCHAR m_wcsPath[MAX_PATH];
  43. HANDLE m_hFFile;
  44. int m_nEndSearch;
  45. int m_nFindFileIndex;
  46. STDMETHOD(Clone)(/*[out]*/ IMDSPEnumStorage **ppEnumStorage);
  47. STDMETHOD(Reset)();
  48. STDMETHOD(Skip)(/*[in]*/ ULONG celt, /*[out]*/ ULONG *pceltFetched);
  49. STDMETHOD(Next)(/*[in]*/ ULONG celt, /*[out]*/ IMDSPStorage **ppStorage, /*[out]*/ ULONG *pceltFetched);
  50. };
  51. #endif //__MDSPENUMSTORAGE_H_