msxml3: Added ISAXAttributes_getValue implementation.

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

View File

@ -382,9 +382,14 @@ static HRESULT WINAPI isaxattributes_getValue(
int *nValue)
{
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;
*nValue = SysStringLen(This->szValue[nIndex]);
*pValue = This->szValue[nIndex];
return S_OK;
}
static HRESULT WINAPI isaxattributes_getValueFromName(
@ -544,8 +549,6 @@ static void libxmlStartElementNS(
HRESULT hr;
saxattributes *attr;
FIXME("Arguments processing not yet implemented.\n");
update_position(This, (xmlChar*)This->pParserCtxt->input->cur+1);
if(This->saxreader->contentHandler)