Commit a3549cd9 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msxml3: Added ISAXXMLReader_getErrorHandler implementation.

parent be89ee1a
......@@ -563,8 +563,12 @@ static HRESULT WINAPI isaxxmlreader_getErrorHandler(
{
saxreader *This = impl_from_ISAXXMLReader( iface );
FIXME("(%p)->(%p) stub\n", This, pErrorHandler);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, pErrorHandler);
if(This->errorHandler)
ISAXErrorHandler_AddRef(This->errorHandler);
*pErrorHandler = This->errorHandler;
return S_OK;
}
static HRESULT WINAPI isaxxmlreader_putErrorHandler(
......
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