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
46 lines
789 B
#include "inetcorepch.h"
|
|
#pragma hdrstop
|
|
|
|
#include <ddraw.h>
|
|
#include <imgutil.h>
|
|
|
|
static
|
|
HRESULT
|
|
WINAPI
|
|
DecodeImage(
|
|
IStream* pStream,
|
|
IMapMIMEToCLSID* pMap,
|
|
IUnknown* pEventSink
|
|
)
|
|
{
|
|
return E_FAIL;
|
|
}
|
|
|
|
static
|
|
HRESULT
|
|
WINAPI
|
|
CreateDDrawSurfaceOnDIB(HBITMAP hbmDib, IDirectDrawSurface **ppSurface)
|
|
{
|
|
return E_FAIL;
|
|
}
|
|
|
|
static
|
|
HRESULT
|
|
WINAPI
|
|
IdentifyMIMEType( const BYTE* pbBytes, ULONG nBytes, UINT* pnFormat )
|
|
{
|
|
return E_FAIL;
|
|
}
|
|
|
|
|
|
//
|
|
// !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
|
|
//
|
|
DEFINE_PROCNAME_ENTRIES(imgutil)
|
|
{
|
|
DLPENTRY(CreateDDrawSurfaceOnDIB)
|
|
DLPENTRY(DecodeImage)
|
|
DLPENTRY(IdentifyMIMEType)
|
|
};
|
|
|
|
DEFINE_PROCNAME_MAP(imgutil)
|