windowscodecs: Return stub IEnumString from mqw_GetEnumerator().
Signed-off-by: Paul Gofman <pgofman@codeweavers.com> Signed-off-by: Esme Povirk <esme@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3b3394bc8e
commit
9716f4e028
|
@ -819,9 +819,9 @@ static HRESULT WINAPI mqw_GetContainerFormat(IWICMetadataQueryWriter *iface, GUI
|
||||||
|
|
||||||
static HRESULT WINAPI mqw_GetEnumerator(IWICMetadataQueryWriter *iface, IEnumString **enum_string)
|
static HRESULT WINAPI mqw_GetEnumerator(IWICMetadataQueryWriter *iface, IEnumString **enum_string)
|
||||||
{
|
{
|
||||||
FIXME("iface %p, enum_string %p stub.\n", iface, enum_string);
|
TRACE("iface %p, enum_string %p.\n", iface, enum_string);
|
||||||
|
|
||||||
return E_NOTIMPL;
|
return string_enumerator_create(enum_string);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI mqw_GetLocation(IWICMetadataQueryWriter *iface, UINT max_length, WCHAR *namespace, UINT *actual_length)
|
static HRESULT WINAPI mqw_GetLocation(IWICMetadataQueryWriter *iface, UINT max_length, WCHAR *namespace, UINT *actual_length)
|
||||||
|
|
Loading…
Reference in New Issue