Nikolay Sivov : wbemdisp: Downgrade failing interface queries to warnings.

Alexandre Julliard julliard at winehq.org
Wed Mar 3 15:47:28 CST 2021


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

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Wed Mar  3 09:04:27 2021 +0300

wbemdisp: Downgrade failing interface queries to warnings.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/wbemdisp/locator.c | 24 ++++++++++++------------
 dlls/wbemdisp/main.c    |  2 +-
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/dlls/wbemdisp/locator.c b/dlls/wbemdisp/locator.c
index dcec47faa6e..ed6a13c2df8 100644
--- a/dlls/wbemdisp/locator.c
+++ b/dlls/wbemdisp/locator.c
@@ -181,7 +181,7 @@ static HRESULT WINAPI property_QueryInterface( ISWbemProperty *iface, REFIID rii
     }
     else
     {
-        FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+        WARN( "interface %s not implemented\n", debugstr_guid(riid) );
         return E_NOINTERFACE;
     }
     ISWbemProperty_AddRef( iface );
@@ -380,7 +380,7 @@ static HRESULT WINAPI propertyset_QueryInterface( ISWbemPropertySet *iface,
     }
     else
     {
-        FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+        WARN( "interface %s not implemented\n", debugstr_guid(riid) );
         return E_NOINTERFACE;
     }
     ISWbemPropertySet_AddRef( iface );
@@ -592,7 +592,7 @@ static HRESULT WINAPI method_QueryInterface( ISWbemMethod *iface, REFIID riid, v
     }
     else
     {
-        FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+        WARN( "interface %s not implemented\n", debugstr_guid(riid) );
         return E_NOINTERFACE;
     }
     ISWbemMethod_AddRef( iface );
@@ -816,7 +816,7 @@ static HRESULT WINAPI methodset_QueryInterface( ISWbemMethodSet *iface, REFIID r
     }
     else
     {
-        FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+        WARN( "interface %s not implemented\n", debugstr_guid(riid) );
         return E_NOINTERFACE;
     }
     ISWbemMethodSet_AddRef( iface );
@@ -1047,7 +1047,7 @@ static HRESULT WINAPI object_QueryInterface(
     }
     else
     {
-        FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+        WARN( "interface %s not implemented\n", debugstr_guid(riid) );
         return E_NOINTERFACE;
     }
     ISWbemObject_AddRef( iface );
@@ -1748,7 +1748,7 @@ static HRESULT WINAPI objectset_QueryInterface(
     }
     else
     {
-        FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+        WARN( "interface %s not implemented\n", debugstr_guid(riid) );
         return E_NOINTERFACE;
     }
     ISWbemObjectSet_AddRef( iface );
@@ -2015,7 +2015,7 @@ static HRESULT WINAPI enumvar_QueryInterface(
     }
     else
     {
-        FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+        WARN( "interface %s not implemented\n", debugstr_guid(riid) );
         return E_NOINTERFACE;
     }
     IEnumVARIANT_AddRef( iface );
@@ -2144,7 +2144,7 @@ static HRESULT WINAPI services_QueryInterface(
     }
     else
     {
-        FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+        WARN( "interface %s not implemented\n", debugstr_guid(riid) );
         return E_NOINTERFACE;
     }
     ISWbemServices_AddRef( iface );
@@ -2649,7 +2649,7 @@ static HRESULT WINAPI locator_QueryInterface(
     }
     else
     {
-        FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+        WARN( "interface %s not implemented\n", debugstr_guid(riid) );
         return E_NOINTERFACE;
     }
     ISWbemLocator_AddRef( iface );
@@ -2888,7 +2888,7 @@ static HRESULT WINAPI security_QueryInterface(
     }
     else
     {
-        FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+        WARN( "interface %s not implemented\n", debugstr_guid(riid) );
         return E_NOINTERFACE;
     }
     ISWbemSecurity_AddRef( iface );
@@ -3100,7 +3100,7 @@ static HRESULT WINAPI namedvalue_QueryInterface(
     }
     else
     {
-        FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+        WARN( "interface %s not implemented\n", debugstr_guid(riid) );
         return E_NOINTERFACE;
     }
     ISWbemNamedValue_AddRef( iface );
@@ -3277,7 +3277,7 @@ static HRESULT WINAPI namedvalueset_QueryInterface(
     }
     else
     {
-        FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+        WARN( "interface %s not implemented\n", debugstr_guid(riid) );
         return E_NOINTERFACE;
     }
     ISWbemNamedValueSet_AddRef( iface );
diff --git a/dlls/wbemdisp/main.c b/dlls/wbemdisp/main.c
index 624017f5382..7e73d546531 100644
--- a/dlls/wbemdisp/main.c
+++ b/dlls/wbemdisp/main.c
@@ -211,7 +211,7 @@ static HRESULT WINAPI factory_QueryInterface( IClassFactory *iface, REFIID riid,
         *obj = iface;
         return S_OK;
     }
-    FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
+    WARN( "interface %s not implemented\n", debugstr_guid(riid) );
     return E_NOINTERFACE;
 }
 




More information about the wine-cvs mailing list