Commit 25168401 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msxml3: Added ISAXAttributes_getValue implementation.

parent 421a9a61
...@@ -382,9 +382,14 @@ static HRESULT WINAPI isaxattributes_getValue( ...@@ -382,9 +382,14 @@ static HRESULT WINAPI isaxattributes_getValue(
int *nValue) int *nValue)
{ {
saxattributes *This = impl_from_ISAXAttributes( iface ); saxattributes *This = impl_from_ISAXAttributes( iface );
TRACE("(%p)->(%d)\n", This, nIndex);
FIXME("(%p)->(%d) stub\n", This, nIndex); if(nIndex >= This->nb_attributes) return E_INVALIDARG;
return E_NOTIMPL;
*nValue = SysStringLen(This->szValue[nIndex]);
*pValue = This->szValue[nIndex];
return S_OK;
} }
static HRESULT WINAPI isaxattributes_getValueFromName( static HRESULT WINAPI isaxattributes_getValueFromName(
...@@ -544,8 +549,6 @@ static void libxmlStartElementNS( ...@@ -544,8 +549,6 @@ static void libxmlStartElementNS(
HRESULT hr; HRESULT hr;
saxattributes *attr; saxattributes *attr;
FIXME("Arguments processing not yet implemented.\n");
update_position(This, (xmlChar*)This->pParserCtxt->input->cur+1); update_position(This, (xmlChar*)This->pParserCtxt->input->cur+1);
if(This->saxreader->contentHandler) if(This->saxreader->contentHandler)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment