Nikolay Sivov : msxml3: Implement getURI() for IMXAttributes.

Alexandre Julliard julliard at winehq.org
Tue Apr 24 13:14:41 CDT 2012


Module: wine
Branch: master
Commit: 9472b8ca43b5e136882779b706201df7a605e97b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=9472b8ca43b5e136882779b706201df7a605e97b

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Tue Apr 24 11:32:51 2012 +0400

msxml3: Implement getURI() for IMXAttributes.

---

 dlls/msxml3/mxwriter.c |   16 ++++++++++++----
 1 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/dlls/msxml3/mxwriter.c b/dlls/msxml3/mxwriter.c
index 48d9f8d..779ca7a 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,




More information about the wine-cvs mailing list