From 02b00ffb27f9a275b338c069d380154918da7f82 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Thu, 28 Jun 2012 09:25:39 +0200 Subject: [PATCH] wbemprox: Implement IEnumWbemClassObject::Clone. --- dlls/wbemprox/class.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dlls/wbemprox/class.c b/dlls/wbemprox/class.c index e82620281bf..d60f72671ed 100644 --- a/dlls/wbemprox/class.c +++ b/dlls/wbemprox/class.c @@ -148,8 +148,11 @@ static HRESULT WINAPI enum_class_object_Clone( IEnumWbemClassObject *iface, IEnumWbemClassObject **ppEnum ) { - FIXME("%p, %p\n", iface, ppEnum); - return E_NOTIMPL; + struct enum_class_object *ec = impl_from_IEnumWbemClassObject( iface ); + + TRACE("%p, %p\n", iface, ppEnum); + + return EnumWbemClassObject_create( NULL, ec->query, (void **)ppEnum ); } static HRESULT WINAPI enum_class_object_Skip( -- 2.11.4.GIT