msxml3: Added ISAXXMLReader_getErrorHandler implementation.

This commit is contained in:
Piotr Caban 2008-07-08 21:01:42 +02:00 committed by Alexandre Julliard
parent be89ee1a31
commit a3549cd9d2
1 changed files with 6 additions and 2 deletions

View File

@ -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(