André Hentschel : msxml3: Make xmlnode_get_parsed a stub.

Alexandre Julliard julliard at winehq.org
Wed Mar 31 10:04:51 CDT 2010


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

Author: André Hentschel <nerv at dawncrow.de>
Date:   Tue Mar 30 19:56:27 2010 +0200

msxml3: Make xmlnode_get_parsed a stub.

---

 dlls/msxml3/node.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c
index d628b13..9106a9f 100644
--- a/dlls/msxml3/node.c
+++ b/dlls/msxml3/node.c
@@ -1548,8 +1548,9 @@ static HRESULT WINAPI xmlnode_get_parsed(
     VARIANT_BOOL* isParsed)
 {
     xmlnode *This = impl_from_IXMLDOMNode( iface );
-    FIXME("(%p)->(%p)\n", This, isParsed);
-    return E_NOTIMPL;
+    FIXME("(%p)->(%p) stub!\n", This, isParsed);
+    *isParsed = VARIANT_TRUE;
+    return S_OK;
 }
 
 static HRESULT WINAPI xmlnode_get_namespaceURI(




More information about the wine-cvs mailing list