Commit 655155fe authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msxml3: Add ISAXAttributes_getValueFromQName implementation.

parent c9893d17
...@@ -859,10 +859,15 @@ static HRESULT WINAPI isaxattributes_getValueFromQName( ...@@ -859,10 +859,15 @@ static HRESULT WINAPI isaxattributes_getValueFromQName(
const WCHAR **pValue, const WCHAR **pValue,
int *nValue) int *nValue)
{ {
HRESULT hr;
int index;
saxattributes *This = impl_from_ISAXAttributes( iface ); saxattributes *This = impl_from_ISAXAttributes( iface );
TRACE("(%p)->(%s, %d)\n", This, debugstr_w(pQName), nQName);
FIXME("(%p)->(%s, %d) stub\n", This, debugstr_w(pQName), nQName); hr = ISAXAttributes_getIndexFromQName(iface, pQName, nQName, &index);
return E_NOTIMPL; if(hr==S_OK) hr = ISAXAttributes_getValue(iface, index, pValue, nValue);
return hr;
} }
static const struct ISAXAttributesVtbl isaxattributes_vtbl = static const struct ISAXAttributesVtbl isaxattributes_vtbl =
......
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