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( ...@@ -971,8 +971,11 @@ static HRESULT WINAPI class_object_GetMethodQualifierSet(
LPCWSTR wszMethod, LPCWSTR wszMethod,
IWbemQualifierSet **ppQualSet) IWbemQualifierSet **ppQualSet)
{ {
FIXME("%p, %s, %p\n", iface, debugstr_w(wszMethod), ppQualSet); struct class_object *co = impl_from_IWbemClassObject( iface );
return E_NOTIMPL;
TRACE("%p, %s, %p\n", iface, debugstr_w(wszMethod), ppQualSet);
return WbemQualifierSet_create( co->name, wszMethod, (void **)ppQualSet );
} }
static HRESULT WINAPI class_object_GetMethodOrigin( 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