wbemprox: Implement IWbemClassObject::GetQualifierSet.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
59b647a3e8
commit
8e2e897432
|
@ -336,8 +336,11 @@ static HRESULT WINAPI class_object_GetQualifierSet(
|
|||
IWbemClassObject *iface,
|
||||
IWbemQualifierSet **ppQualSet )
|
||||
{
|
||||
FIXME("%p, %p\n", iface, ppQualSet);
|
||||
return E_NOTIMPL;
|
||||
struct class_object *co = impl_from_IWbemClassObject( iface );
|
||||
|
||||
TRACE("%p, %p\n", iface, ppQualSet);
|
||||
|
||||
return WbemQualifierSet_create( co->name, NULL, (void **)ppQualSet );
|
||||
}
|
||||
|
||||
static HRESULT record_get_value( const struct record *record, UINT index, VARIANT *var, CIMTYPE *type )
|
||||
|
|
Loading…
Reference in New Issue