Commit 09e32f57 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wbemprox: Implement IWbemClassObject::GetMethodQualifierSet.

parent b1ceb785
......@@ -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(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment