Commit f24834f4 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

windowscodecs: Add stub implementation of IWICBitmapDecoderInfo.

parent d89b470e
......@@ -10,6 +10,7 @@ C_SRCS = \
bmpdecode.c \
clsfactory.c \
imgfactory.c \
info.c \
main.c \
palette.c \
regsvr.c
......
......@@ -115,8 +115,8 @@ static HRESULT WINAPI ImagingFactory_CreateDecoderFromFileHandle(
static HRESULT WINAPI ImagingFactory_CreateComponentInfo(IWICImagingFactory *iface,
REFCLSID clsidComponent, IWICComponentInfo **ppIInfo)
{
FIXME("(%p,%s,%p): stub\n", iface, debugstr_guid(clsidComponent), ppIInfo);
return E_NOTIMPL;
TRACE("(%p,%s,%p)\n", iface, debugstr_guid(clsidComponent), ppIInfo);
return CreateComponentInfo(clsidComponent, ppIInfo);
}
static HRESULT WINAPI ImagingFactory_CreateDecoder(IWICImagingFactory *iface,
......
......@@ -28,4 +28,6 @@ extern HRESULT copy_pixels(UINT bpp, const BYTE *srcbuffer,
UINT srcwidth, UINT srcheight, INT srcstride,
const WICRect *rc, UINT dststride, UINT dstbuffersize, BYTE *dstbuffer);
extern HRESULT CreateComponentInfo(REFCLSID clsid, IWICComponentInfo **ppIInfo);
#endif /* WINCODECS_PRIVATE_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment