Commit 3cce31b1 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

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

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