wbemprox: Implement IEnumWbemClassObject::Reset.
This commit is contained in:
parent
a16f7044a4
commit
0f936f49ca
|
@ -91,8 +91,13 @@ static HRESULT WINAPI enum_class_object_QueryInterface(
|
||||||
static HRESULT WINAPI enum_class_object_Reset(
|
static HRESULT WINAPI enum_class_object_Reset(
|
||||||
IEnumWbemClassObject *iface )
|
IEnumWbemClassObject *iface )
|
||||||
{
|
{
|
||||||
FIXME("%p\n", iface);
|
struct enum_class_object *ec = impl_from_IEnumWbemClassObject( iface );
|
||||||
return E_NOTIMPL;
|
struct view *view = ec->query->view;
|
||||||
|
|
||||||
|
TRACE("%p\n", iface);
|
||||||
|
|
||||||
|
view->index = 0;
|
||||||
|
return WBEM_S_NO_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI enum_class_object_Next(
|
static HRESULT WINAPI enum_class_object_Next(
|
||||||
|
|
Loading…
Reference in New Issue