msxml3: Implement endElement() for writer's IVBSAXContentHandler.
This commit is contained in:
parent
dc37ed1f7a
commit
87fb169f9c
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue