[3/4] wmiutils: Implement IWbemPathKeyList::GetCount.

Hans Leidekker hans at codeweavers.com
Thu Feb 21 03:46:19 CST 2013


---
 dlls/wmiutils/path.c |   15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/dlls/wmiutils/path.c b/dlls/wmiutils/path.c
index 5f64aa0..98f22db 100644
--- a/dlls/wmiutils/path.c
+++ b/dlls/wmiutils/path.c
@@ -116,8 +116,19 @@ static HRESULT WINAPI keylist_GetCount(
     IWbemPathKeyList *iface,
     ULONG *puKeyCount )
 {
-    FIXME("%p, %p\n", iface, puKeyCount);
-    return E_NOTIMPL;
+    struct keylist *keylist = impl_from_IWbemPathKeyList( iface );
+    struct path *parent = impl_from_IWbemPath( keylist->parent );
+
+    TRACE("%p, %p\n", iface, puKeyCount);
+
+    if (!puKeyCount) return WBEM_E_INVALID_PARAMETER;
+
+    EnterCriticalSection( &parent->cs );
+
+    *puKeyCount = parent->num_keys;
+
+    LeaveCriticalSection( &parent->cs );
+    return S_OK;
 }
 
 static HRESULT WINAPI keylist_SetKey(
-- 
1.7.10.4







More information about the wine-patches mailing list