msxml3: IXSLProcessor_put_output() is not a stub.
This commit is contained in:
parent
27e86cfc36
commit
ff0ed20c2f
@ -463,7 +463,7 @@ static HRESULT WINAPI xslprocessor_put_output(
|
|||||||
IStream *stream;
|
IStream *stream;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
FIXME("(%p)->(%s): semi-stub\n", This, debugstr_variant(&output));
|
TRACE("(%p)->(%s)\n", This, debugstr_variant(&output));
|
||||||
|
|
||||||
switch (V_VT(&output))
|
switch (V_VT(&output))
|
||||||
{
|
{
|
||||||
@ -473,8 +473,11 @@ static HRESULT WINAPI xslprocessor_put_output(
|
|||||||
break;
|
break;
|
||||||
case VT_UNKNOWN:
|
case VT_UNKNOWN:
|
||||||
hr = IUnknown_QueryInterface(V_UNKNOWN(&output), &IID_IStream, (void**)&stream);
|
hr = IUnknown_QueryInterface(V_UNKNOWN(&output), &IID_IStream, (void**)&stream);
|
||||||
|
if (FAILED(hr))
|
||||||
|
WARN("failed to get IStream from output, 0x%08x\n", hr);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
FIXME("output type %d not handed\n", V_VT(&output));
|
||||||
hr = E_FAIL;
|
hr = E_FAIL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user