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,
|
IWbemClassObject *iface,
|
||||||
IWbemQualifierSet **ppQualSet )
|
IWbemQualifierSet **ppQualSet )
|
||||||
{
|
{
|
||||||
FIXME("%p, %p\n", iface, ppQualSet);
|
struct class_object *co = impl_from_IWbemClassObject( iface );
|
||||||
return E_NOTIMPL;
|
|
||||||
|
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 )
|
static HRESULT record_get_value( const struct record *record, UINT index, VARIANT *var, CIMTYPE *type )
|
||||||
|
|
Loading…
Reference in New Issue