msxml3: IXSLProcessor_put_output() is not a stub.

This commit is contained in:
Nikolay Sivov 2014-04-08 07:42:43 +04:00 committed by Alexandre Julliard
parent 27e86cfc36
commit ff0ed20c2f
1 changed files with 4 additions and 1 deletions

View File

@ -463,7 +463,7 @@ static HRESULT WINAPI xslprocessor_put_output(
IStream *stream;
HRESULT hr;
FIXME("(%p)->(%s): semi-stub\n", This, debugstr_variant(&output));
TRACE("(%p)->(%s)\n", This, debugstr_variant(&output));
switch (V_VT(&output))
{
@ -473,8 +473,11 @@ static HRESULT WINAPI xslprocessor_put_output(
break;
case VT_UNKNOWN:
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;
default:
FIXME("output type %d not handed\n", V_VT(&output));
hr = E_FAIL;
}