Hans Leidekker : wbemprox: Implement IWbemClassObject::GetMethodQualifierSet.

Alexandre Julliard julliard at winehq.org
Fri Oct 23 14:27:18 CDT 2020


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

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Fri Oct 23 11:15:56 2020 +0200

wbemprox: Implement IWbemClassObject::GetMethodQualifierSet.

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

---

 dlls/wbemprox/class.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dlls/wbemprox/class.c b/dlls/wbemprox/class.c
index e048fb3db82..d24d8cbb5ca 100644
--- a/dlls/wbemprox/class.c
+++ b/dlls/wbemprox/class.c
@@ -971,8 +971,11 @@ static HRESULT WINAPI class_object_GetMethodQualifierSet(
     LPCWSTR wszMethod,
     IWbemQualifierSet **ppQualSet)
 {
-    FIXME("%p, %s, %p\n", iface, debugstr_w(wszMethod), ppQualSet);
-    return E_NOTIMPL;
+    struct class_object *co = impl_from_IWbemClassObject( iface );
+
+    TRACE("%p, %s, %p\n", iface, debugstr_w(wszMethod), ppQualSet);
+
+    return WbemQualifierSet_create( co->name, wszMethod, (void **)ppQualSet );
 }
 
 static HRESULT WINAPI class_object_GetMethodOrigin(




More information about the wine-cvs mailing list