wbemprox: Implement IWbemClassObject::GetMethodQualifierSet.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hans Leidekker 2020-10-23 11:15:56 +02:00 committed by Alexandre Julliard
parent b1ceb7853c
commit 09e32f57b7

View file

@ -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(