msxml3: Add ISAXAttribute_getLength implementation.

This commit is contained in:
Piotr Caban 2008-07-30 20:26:50 +02:00 committed by Alexandre Julliard
parent 6df49d5707
commit 58b26f3b07
1 changed files with 3 additions and 2 deletions

View File

@ -245,8 +245,9 @@ static HRESULT WINAPI isaxattributes_getLength(
{
saxattributes *This = impl_from_ISAXAttributes( iface );
FIXME("(%p) stub\n", This);
return E_NOTIMPL;
*length = This->nb_attributes;
TRACE("Length set to %d\n", *length);
return S_OK;
}
static HRESULT WINAPI isaxattributes_getURI(