[5/5] wbemprox: Support IClientSecurity on class objects.

Hans Leidekker hans at codeweavers.com
Thu Sep 6 07:04:14 CDT 2012


---
 dlls/wbemprox/class.c |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/dlls/wbemprox/class.c b/dlls/wbemprox/class.c
index 1ec1f51..5a70e9d 100644
--- a/dlls/wbemprox/class.c
+++ b/dlls/wbemprox/class.c
@@ -301,6 +301,11 @@ static HRESULT WINAPI class_object_QueryInterface(
     {
         *ppvObject = co;
     }
+    else if (IsEqualGUID( riid, &IID_IClientSecurity ))
+    {
+        *ppvObject = &client_security;
+        return S_OK;
+    }
     else
     {
         FIXME("interface %s not implemented\n", debugstr_guid(riid));
-- 
1.7.10.4






More information about the wine-patches mailing list