msxml: Issue a fixme if the interface is not implemented

Huw D M Davies h.davies1 at physics.ox.ac.uk
Fri Jan 27 11:02:08 CST 2006


        Huw Davies <huw at codeweavers.com>
        msxml: Issue a fixme if the interface is not implemented.
-- 
Huw Davies
huw at codeweavers.com
diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c
index 5b27b28..33cdaf5 100644
--- a/dlls/msxml3/domdoc.c
+++ b/dlls/msxml3/domdoc.c
@@ -95,7 +95,10 @@ static HRESULT WINAPI domdoc_QueryInterf
         return IUnknown_QueryInterface(This->node_unk, riid, ppvObject);
     }
     else
+    {
+        FIXME("interface %s not implemented\n", debugstr_guid(riid));
         return E_NOINTERFACE;
+    }
 
     IXMLDOMDocument_AddRef( iface );
 
diff --git a/dlls/msxml3/element.c b/dlls/msxml3/element.c
index 9f4ba3e..33c905d 100644
--- a/dlls/msxml3/element.c
+++ b/dlls/msxml3/element.c
@@ -74,7 +74,10 @@ static HRESULT WINAPI domelem_QueryInter
         return IUnknown_QueryInterface(This->node_unk, riid, ppvObject);
     }
     else
+    {
+        FIXME("interface %s not implemented\n", debugstr_guid(riid));
         return E_NOINTERFACE;
+    }
 
     IXMLDOMElement_AddRef( iface );
 
diff --git a/dlls/msxml3/factory.c b/dlls/msxml3/factory.c
index f825879..126e70d 100644
--- a/dlls/msxml3/factory.c
+++ b/dlls/msxml3/factory.c
@@ -63,6 +63,7 @@ static HRESULT WINAPI xmlcf_QueryInterfa
         return S_OK;
     }
 
+    FIXME("interface %s not implemented\n", debugstr_guid(riid));
     return E_NOINTERFACE;
 }
 
diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c
index 607056c..58bdd92 100644
--- a/dlls/msxml3/node.c
+++ b/dlls/msxml3/node.c
@@ -775,6 +775,7 @@ static HRESULT WINAPI Internal_QueryInte
         *ppvObject = &This->lpVtbl;
     else
     {
+        FIXME("interface %s not implemented\n", debugstr_guid(riid));
         *ppvObject = NULL;
         return E_NOINTERFACE;
     }
diff --git a/dlls/msxml3/nodelist.c b/dlls/msxml3/nodelist.c
index db4e370..806985c 100644
--- a/dlls/msxml3/nodelist.c
+++ b/dlls/msxml3/nodelist.c
@@ -167,7 +167,10 @@ static HRESULT WINAPI xmlnodelist_QueryI
         *ppvObject = iface;
     }
     else
+    {
+        FIXME("interface %s not implemented\n", debugstr_guid(riid));
         return E_NOINTERFACE;
+    }
 
     IXMLDOMNodeList_AddRef( iface );
 
diff --git a/dlls/msxml3/nodemap.c b/dlls/msxml3/nodemap.c
index 6580667..5166020 100644
--- a/dlls/msxml3/nodemap.c
+++ b/dlls/msxml3/nodemap.c
@@ -64,7 +64,10 @@ static HRESULT WINAPI xmlnodemap_QueryIn
         *ppvObject = iface;
     }
     else
+    {
+        FIXME("interface %s not implemented\n", debugstr_guid(riid));
         return E_NOINTERFACE;
+    }
 
     IXMLDOMElement_AddRef( iface );
 
diff --git a/dlls/msxml3/parseerror.c b/dlls/msxml3/parseerror.c
index 359ce64..acde7cc 100644
--- a/dlls/msxml3/parseerror.c
+++ b/dlls/msxml3/parseerror.c
@@ -63,7 +63,10 @@ static HRESULT WINAPI parseError_QueryIn
         *ppvObject = iface;
     }
     else
+    {
+        FIXME("interface %s not implemented\n", debugstr_guid(riid));
         return E_NOINTERFACE;
+    }
 
     IXMLDOMParseError_AddRef( iface );
 



More information about the wine-patches mailing list