msxml3: Added ISAXMLReader_getContentHandler implementation.

This commit is contained in:
Piotr Caban 2008-07-08 20:52:26 +02:00 committed by Alexandre Julliard
parent 3fa75f49b4
commit 23cae5803a
1 changed files with 6 additions and 2 deletions

View File

@ -509,8 +509,12 @@ static HRESULT WINAPI isaxxmlreader_getContentHandler(
{
saxreader *This = impl_from_ISAXXMLReader( iface );
FIXME("(%p)->(%p) stub\n", This, pContentHandler);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, pContentHandler);
if(This->contentHandler)
ISAXContentHandler_AddRef(This->contentHandler);
*pContentHandler = This->contentHandler;
return S_OK;
}
static HRESULT WINAPI isaxxmlreader_putContentHandler(