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.

46 lines
789 B

  1. #include "inetcorepch.h"
  2. #pragma hdrstop
  3. #include <ddraw.h>
  4. #include <imgutil.h>
  5. static
  6. HRESULT
  7. WINAPI
  8. DecodeImage(
  9. IStream* pStream,
  10. IMapMIMEToCLSID* pMap,
  11. IUnknown* pEventSink
  12. )
  13. {
  14. return E_FAIL;
  15. }
  16. static
  17. HRESULT
  18. WINAPI
  19. CreateDDrawSurfaceOnDIB(HBITMAP hbmDib, IDirectDrawSurface **ppSurface)
  20. {
  21. return E_FAIL;
  22. }
  23. static
  24. HRESULT
  25. WINAPI
  26. IdentifyMIMEType( const BYTE* pbBytes, ULONG nBytes, UINT* pnFormat )
  27. {
  28. return E_FAIL;
  29. }
  30. //
  31. // !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
  32. //
  33. DEFINE_PROCNAME_ENTRIES(imgutil)
  34. {
  35. DLPENTRY(CreateDDrawSurfaceOnDIB)
  36. DLPENTRY(DecodeImage)
  37. DLPENTRY(IdentifyMIMEType)
  38. };
  39. DEFINE_PROCNAME_MAP(imgutil)