msxml: Print the IIDs

Huw D M Davies h.davies1 at physics.ox.ac.uk
Mon Oct 31 11:03:42 CST 2005


        Huw Davies <huw at codeweavers.com>
        Actually print the IIDs
-- 
Huw Davies
huw at codeweavers.com
Index: dlls/msxml3/domdoc.c
===================================================================
RCS file: /home/wine/wine/dlls/msxml3/domdoc.c,v
retrieving revision 1.14
diff -u -p -r1.14 domdoc.c
--- dlls/msxml3/domdoc.c	26 Oct 2005 10:09:22 -0000	1.14
+++ dlls/msxml3/domdoc.c	31 Oct 2005 17:01:31 -0000
@@ -62,7 +62,7 @@ static HRESULT WINAPI domdoc_QueryInterf
 {
     domdoc *This = impl_from_IXMLDOMDocument( iface );
 
-    TRACE("%p %p %p\n", This, debugstr_guid( riid ), ppvObject );
+    TRACE("%p %s %p\n", This, debugstr_guid( riid ), ppvObject );
 
     if ( IsEqualGUID( riid, &IID_IXMLDOMDocument ) ||
          IsEqualGUID( riid, &IID_IXMLDOMNode ) ||
Index: dlls/msxml3/element.c
===================================================================
RCS file: /home/wine/wine/dlls/msxml3/element.c,v
retrieving revision 1.8
diff -u -p -r1.8 element.c
--- dlls/msxml3/element.c	22 Aug 2005 09:23:52 -0000	1.8
+++ dlls/msxml3/element.c	31 Oct 2005 17:01:31 -0000
@@ -62,7 +62,7 @@ static HRESULT WINAPI domelem_QueryInter
     REFIID riid,
     void** ppvObject )
 {
-    TRACE("%p %p %p\n", iface, debugstr_guid(riid), ppvObject);
+    TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject);
 
     if ( IsEqualGUID( riid, &IID_IXMLDOMElement ) ||
          IsEqualGUID( riid, &IID_IUnknown ) ||
Index: dlls/msxml3/node.c
===================================================================
RCS file: /home/wine/wine/dlls/msxml3/node.c,v
retrieving revision 1.8
diff -u -p -r1.8 node.c
--- dlls/msxml3/node.c	3 Sep 2005 09:39:39 -0000	1.8
+++ dlls/msxml3/node.c	31 Oct 2005 17:01:31 -0000
@@ -73,7 +73,7 @@ static HRESULT WINAPI xmlnode_QueryInter
     REFIID riid,
     void** ppvObject )
 {
-    TRACE("%p %p %p\n", iface, debugstr_guid(riid), ppvObject);
+    TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject);
 
     if ( IsEqualGUID( riid, &IID_IUnknown ) ||
          IsEqualGUID( riid, &IID_IDispatch ) ||
Index: dlls/msxml3/nodelist.c
===================================================================
RCS file: /home/wine/wine/dlls/msxml3/nodelist.c,v
retrieving revision 1.2
diff -u -p -r1.2 nodelist.c
--- dlls/msxml3/nodelist.c	3 Sep 2005 09:39:39 -0000	1.2
+++ dlls/msxml3/nodelist.c	31 Oct 2005 17:01:31 -0000
@@ -162,7 +162,7 @@ static HRESULT WINAPI xmlnodelist_QueryI
     REFIID riid,
     void** ppvObject )
 {
-    TRACE("%p %p %p\n", iface, debugstr_guid(riid), ppvObject);
+    TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject);
 
     if ( IsEqualGUID( riid, &IID_IUnknown ) ||
          IsEqualGUID( riid, &IID_IDispatch ) ||
Index: dlls/msxml3/nodemap.c
===================================================================
RCS file: /home/wine/wine/dlls/msxml3/nodemap.c,v
retrieving revision 1.5
diff -u -p -r1.5 nodemap.c
--- dlls/msxml3/nodemap.c	19 Aug 2005 10:03:27 -0000	1.5
+++ dlls/msxml3/nodemap.c	31 Oct 2005 17:01:31 -0000
@@ -57,7 +57,7 @@ static HRESULT WINAPI xmlnodemap_QueryIn
     IXMLDOMNamedNodeMap *iface,
     REFIID riid, void** ppvObject )
 {
-    TRACE("%p %p %p\n", iface, debugstr_guid(riid), ppvObject);
+    TRACE("%p %s %p\n", iface, debugstr_guid(riid), ppvObject);
 
     if( IsEqualGUID( riid, &IID_IXMLDOMElement ) ||
         IsEqualGUID( riid, &IID_IUnknown ) ||



More information about the wine-patches mailing list