From 61a8a247cfc56daddd5fa868d5cabdd126053d38 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Thu, 6 Sep 2012 14:04:14 +0200 Subject: [PATCH] wbemprox: Support IClientSecurity on class objects. --- dlls/wbemprox/class.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dlls/wbemprox/class.c b/dlls/wbemprox/class.c index 1ec1f512b17..5a70e9d6266 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));