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.

51 lines
790 B

  1. #include "multimediapch.h"
  2. #pragma hdrstop
  3. #include <wmsdk.h>
  4. static
  5. HRESULT
  6. WINAPI
  7. WMCreateReaderPriv(
  8. IWMReader** ppReader
  9. )
  10. {
  11. *ppReader = NULL;
  12. return E_FAIL;
  13. }
  14. static
  15. HRESULT
  16. WINAPI
  17. WMCreateEditor(
  18. IWMMetadataEditor** ppEditor
  19. )
  20. {
  21. *ppEditor = NULL;
  22. return E_FAIL;
  23. }
  24. static
  25. HRESULT
  26. WINAPI
  27. WMCreateProfileManager(
  28. IWMProfileManager **ppProfileManager
  29. )
  30. {
  31. *ppProfileManager = NULL;
  32. return E_FAIL;
  33. }
  34. //
  35. // !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
  36. //
  37. DEFINE_PROCNAME_ENTRIES(wmvcore)
  38. {
  39. DLPENTRY(WMCreateEditor)
  40. DLPENTRY(WMCreateProfileManager)
  41. DLPENTRY(WMCreateReaderPriv)
  42. };
  43. DEFINE_PROCNAME_MAP(wmvcore)