Huw Davies : msxml: Issue a fixme if the interface is not implemented.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Jan 27 12:27:42 CST 2006


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

Author: Huw Davies <huw at codeweavers.com>
Date:   Fri Jan 27 19:22:56 2006 +0100

msxml: Issue a fixme if the interface is not implemented.

---

 dlls/msxml3/domdoc.c     |    3 +++
 dlls/msxml3/element.c    |    3 +++
 dlls/msxml3/factory.c    |    1 +
 dlls/msxml3/node.c       |    1 +
 dlls/msxml3/nodelist.c   |    3 +++
 dlls/msxml3/nodemap.c    |    3 +++
 dlls/msxml3/parseerror.c |    3 +++
 7 files changed, 17 insertions(+), 0 deletions(-)

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-cvs mailing list