msxml3: Added ISAXAttributes_getLocalName implementation.

This commit is contained in:
Piotr Caban 2008-07-30 20:27:07 +02:00 committed by Alexandre Julliard
parent 58b26f3b07
commit 421a9a61c4
1 changed files with 7 additions and 2 deletions

View File

@ -269,9 +269,14 @@ static HRESULT WINAPI isaxattributes_getLocalName(
int *pLocalNameLength)
{
saxattributes *This = impl_from_ISAXAttributes( iface );
TRACE("(%p)->(%d)\n", This, nIndex);
FIXME("(%p)->(%d) stub\n", This, nIndex);
return E_NOTIMPL;
if(nIndex >= This->nb_attributes) return E_INVALIDARG;
*pLocalNameLength = SysStringLen(This->szLocalname[nIndex]);
*pLocalName = This->szLocalname[nIndex];
return S_OK;
}
static HRESULT WINAPI isaxattributes_getQName(