msxml3: Added ISAXAttributes_getValue implementation.
This commit is contained in:
parent
421a9a61c4
commit
25168401af
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue