mirror of
https://github.com/reactos/wine.git
synced 2025-02-25 07:22:28 +00:00
windowscodecs: Implement GetContainerFormat for more components.
This commit is contained in:
parent
41f9ca2abf
commit
5a45076d1d
@ -489,8 +489,8 @@ static HRESULT WINAPI BmpEncoder_Initialize(IWICBitmapEncoder *iface,
|
||||
static HRESULT WINAPI BmpEncoder_GetContainerFormat(IWICBitmapEncoder *iface,
|
||||
GUID *pguidContainerFormat)
|
||||
{
|
||||
FIXME("(%p,%s): stub\n", iface, debugstr_guid(pguidContainerFormat));
|
||||
return E_NOTIMPL;
|
||||
memcpy(pguidContainerFormat, &GUID_ContainerFormatBmp, sizeof(GUID));
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI BmpEncoder_GetEncoderInfo(IWICBitmapEncoder *iface,
|
||||
|
@ -527,8 +527,8 @@ end:
|
||||
static HRESULT WINAPI IcoDecoder_GetContainerFormat(IWICBitmapDecoder *iface,
|
||||
GUID *pguidContainerFormat)
|
||||
{
|
||||
FIXME("(%p,%p): stub\n", iface, pguidContainerFormat);
|
||||
return E_NOTIMPL;
|
||||
memcpy(pguidContainerFormat, &GUID_ContainerFormatIco, sizeof(GUID));
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI IcoDecoder_GetDecoderInfo(IWICBitmapDecoder *iface,
|
||||
|
@ -1650,8 +1650,8 @@ exit:
|
||||
static HRESULT WINAPI TiffEncoder_GetContainerFormat(IWICBitmapEncoder *iface,
|
||||
GUID *pguidContainerFormat)
|
||||
{
|
||||
FIXME("(%p,%s): stub\n", iface, debugstr_guid(pguidContainerFormat));
|
||||
return E_NOTIMPL;
|
||||
memcpy(pguidContainerFormat, &GUID_ContainerFormatTiff, sizeof(GUID));
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI TiffEncoder_GetEncoderInfo(IWICBitmapEncoder *iface,
|
||||
|
Loading…
x
Reference in New Issue
Block a user