Implement IXMLDOMElement::get_tagName.

This commit is contained in:
Mike McCormack 2005-08-11 10:57:58 +00:00 committed by Alexandre Julliard
parent b814be9814
commit 77392f2d77
1 changed files with 15 additions and 2 deletions

View File

@ -428,8 +428,21 @@ static HRESULT WINAPI domelem_get_tagName(
IXMLDOMElement *iface,
BSTR* p)
{
FIXME("\n");
return E_NOTIMPL;
domelem *This = impl_from_IXMLDOMElement( iface );
xmlNodePtr element;
TRACE("%p\n", This );
if ( !This->node )
return E_FAIL;
element = xmlelement_from_xmlnode( This->node );
if ( !element )
return E_FAIL;
*p = bstr_from_xmlChar( element->name );
return S_OK;
}
static HRESULT WINAPI domelem_getAttribute(