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.

67 lines
2.7 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. // MDServiceProvider.h : Declaration of the CMDServiceProvider
  24. #ifndef __MDSERVICEPROVIDER_H_
  25. #define __MDSERVICEPROVIDER_H_
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CMDServiceProvider
  28. class ATL_NO_VTABLE CMDServiceProvider :
  29. public CComObjectRootEx<CComSingleThreadModel>,
  30. public CComCoClass<CMDServiceProvider, &CLSID_MDServiceProvider>,
  31. public IMDServiceProvider,
  32. public IComponentAuthenticate
  33. {
  34. public:
  35. CMDServiceProvider();
  36. ~CMDServiceProvider();
  37. DECLARE_CLASSFACTORY_SINGLETON(CMDServiceProvider)
  38. DECLARE_REGISTRY_RESOURCEID(IDR_MDSERVICEPROVIDER)
  39. BEGIN_COM_MAP(CMDServiceProvider)
  40. COM_INTERFACE_ENTRY(IMDServiceProvider)
  41. COM_INTERFACE_ENTRY(IComponentAuthenticate)
  42. END_COM_MAP()
  43. // IMDServiceProvider
  44. public:
  45. DWORD m_dwThreadID;
  46. HANDLE m_hThread;
  47. STDMETHOD(EnumDevices)(/*[out]*/ IMDSPEnumDevice **ppEnumDevice);
  48. STDMETHOD(GetDeviceCount)(/*[out]*/ DWORD *pdwCount);
  49. STDMETHOD(SACAuth)(DWORD dwProtocolID,
  50. DWORD dwPass,
  51. BYTE *pbDataIn,
  52. DWORD dwDataInLen,
  53. BYTE **ppbDataOut,
  54. DWORD *pdwDataOutLen);
  55. STDMETHOD(SACGetProtocols)(DWORD **ppdwProtocols,
  56. DWORD *pdwProtocolCount);
  57. };
  58. #endif //__MDSERVICEPROVIDER_H_