wbemprox: Support IClientSecurity on class objects.

This commit is contained in:
Hans Leidekker 2012-09-06 14:04:14 +02:00 committed by Alexandre Julliard
parent 0d28920804
commit 61a8a247cf
1 changed files with 5 additions and 0 deletions

View File

@ -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));