Commit 87fb169f authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msxml3: Implement endElement() for writer's IVBSAXContentHandler.

parent dc37ed1f
......@@ -2112,8 +2112,16 @@ static HRESULT WINAPI VBSAXContentHandler_endElement(IVBSAXContentHandler *iface
BSTR *localName, BSTR *QName)
{
mxwriter *This = impl_from_IVBSAXContentHandler( iface );
FIXME("(%p)->(%p %p %p): stub\n", This, namespaceURI, localName, QName);
return E_NOTIMPL;
TRACE("(%p)->(%p %p %p)\n", This, namespaceURI, localName, QName);
if (!namespaceURI || !localName || !QName)
return E_POINTER;
return ISAXContentHandler_endElement(&This->ISAXContentHandler_iface,
*namespaceURI, SysStringLen(*namespaceURI),
*localName, SysStringLen(*localName),
*QName, SysStringLen(*QName));
}
static HRESULT WINAPI VBSAXContentHandler_characters(IVBSAXContentHandler *iface, BSTR *chars)
......
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