From 9472b8ca43b5e136882779b706201df7a605e97b Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Tue, 24 Apr 2012 11:32:51 +0400 Subject: [PATCH] msxml3: Implement getURI() for IMXAttributes. --- dlls/msxml3/mxwriter.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/dlls/msxml3/mxwriter.c b/dlls/msxml3/mxwriter.c index 48d9f8d8ca2..779ca7a3caf 100644 --- a/dlls/msxml3/mxwriter.c +++ b/dlls/msxml3/mxwriter.c @@ -1787,12 +1787,20 @@ static HRESULT WINAPI SAXAttributes_getLength(ISAXAttributes *iface, int *length return S_OK; } -static HRESULT WINAPI SAXAttributes_getURI(ISAXAttributes *iface, int nIndex, const WCHAR **pUrl, - int *pUriSize) +static HRESULT WINAPI SAXAttributes_getURI(ISAXAttributes *iface, int index, const WCHAR **uri, + int *len) { mxattributes *This = impl_from_ISAXAttributes( iface ); - FIXME("(%p)->(%d %p %p): stub\n", This, nIndex, pUrl, pUriSize); - return E_NOTIMPL; + + TRACE("(%p)->(%d %p %p)\n", This, index, uri, len); + + if (index >= This->length || index < 0) return E_INVALIDARG; + if (!uri || !len) return E_POINTER; + + *len = SysStringLen(This->attr[index].uri); + *uri = This->attr[index].uri; + + return S_OK; } static HRESULT WINAPI SAXAttributes_getLocalName(ISAXAttributes *iface, int index, const WCHAR **name, -- 2.11.4.GIT