Andrew Nguyen : msxml3: Correct the prototype of DOMDocument_create when compiling without libxml2 .

Alexandre Julliard julliard at winehq.org
Wed Sep 15 18:18:39 CDT 2010


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

Author: Andrew Nguyen <anguyen at codeweavers.com>
Date:   Wed Sep 15 11:16:30 2010 -0500

msxml3: Correct the prototype of DOMDocument_create when compiling without libxml2.

---

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

diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c
index 8aa5332..f086e80 100644
--- a/dlls/msxml3/domdoc.c
+++ b/dlls/msxml3/domdoc.c
@@ -2521,7 +2521,7 @@ IUnknown* create_domdoc( xmlNodePtr document )
 
 #else
 
-HRESULT DOMDocument_create(IUnknown *pUnkOuter, void **ppObj)
+HRESULT DOMDocument_create(const GUID *clsid, IUnknown *pUnkOuter, void **ppObj)
 {
     MESSAGE("This program tried to use a DOMDocument object, but\n"
             "libxml2 support was not present at compile time.\n");




More information about the wine-cvs mailing list