msxml3: Add ISAXAttribute_getLength implementation.
This commit is contained in:
parent
6df49d5707
commit
58b26f3b07
|
@ -245,8 +245,9 @@ static HRESULT WINAPI isaxattributes_getLength(
|
||||||
{
|
{
|
||||||
saxattributes *This = impl_from_ISAXAttributes( iface );
|
saxattributes *This = impl_from_ISAXAttributes( iface );
|
||||||
|
|
||||||
FIXME("(%p) stub\n", This);
|
*length = This->nb_attributes;
|
||||||
return E_NOTIMPL;
|
TRACE("Length set to %d\n", *length);
|
||||||
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI isaxattributes_getURI(
|
static HRESULT WINAPI isaxattributes_getURI(
|
||||||
|
|
Loading…
Reference in New Issue