mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
wbemdisp: Forward ISWbemNamedValueSet::DeleteAll() to context object.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a0c624c2b1
commit
b938f54b1e
1 changed files with 4 additions and 2 deletions
|
@ -3467,9 +3467,11 @@ static HRESULT WINAPI namedvalueset_Clone(
|
|||
static HRESULT WINAPI namedvalueset_DeleteAll(
|
||||
ISWbemNamedValueSet *iface )
|
||||
{
|
||||
FIXME("\n");
|
||||
struct namedvalueset *set = impl_from_ISWbemNamedValueSet( iface );
|
||||
|
||||
return E_NOTIMPL;
|
||||
TRACE("%p\n", set);
|
||||
|
||||
return IWbemContext_DeleteAll( set->context );
|
||||
}
|
||||
|
||||
static const ISWbemNamedValueSetVtbl namedvalueset_vtbl =
|
||||
|
|
Loading…
Reference in a new issue