msxml3: Fix return values for some methods needed by SAX reader.

This commit is contained in:
Nikolay Sivov 2014-03-05 10:40:20 +04:00 committed by Alexandre Julliard
parent 89c21a89a6
commit 3cce31b132
1 changed files with 6 additions and 6 deletions

View File

@ -1155,8 +1155,8 @@ static HRESULT WINAPI SAXContentHandler_startPrefixMapping(
int nuri)
{
mxwriter *This = impl_from_ISAXContentHandler( iface );
FIXME("(%p)->(%s %s)\n", This, debugstr_wn(prefix, nprefix), debugstr_wn(uri, nuri));
return E_NOTIMPL;
TRACE("(%p)->(%s %s)\n", This, debugstr_wn(prefix, nprefix), debugstr_wn(uri, nuri));
return S_OK;
}
static HRESULT WINAPI SAXContentHandler_endPrefixMapping(
@ -1165,8 +1165,8 @@ static HRESULT WINAPI SAXContentHandler_endPrefixMapping(
int nprefix)
{
mxwriter *This = impl_from_ISAXContentHandler( iface );
FIXME("(%p)->(%s)\n", This, debugstr_wn(prefix, nprefix));
return E_NOTIMPL;
TRACE("(%p)->(%s)\n", This, debugstr_wn(prefix, nprefix));
return S_OK;
}
static HRESULT WINAPI SAXContentHandler_startElement(
@ -2007,8 +2007,8 @@ static HRESULT WINAPI VBSAXContentHandler_Invoke(IVBSAXContentHandler *iface, DI
static HRESULT WINAPI VBSAXContentHandler_putref_documentLocator(IVBSAXContentHandler *iface, IVBSAXLocator *locator)
{
mxwriter *This = impl_from_IVBSAXContentHandler( iface );
FIXME("(%p)->(%p): stub\n", This, locator);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, locator);
return S_OK;
}
static HRESULT WINAPI VBSAXContentHandler_startDocument(IVBSAXContentHandler *iface)