Commit 0ceee481 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wbemprox: Support IClientSecurity on the class enumerator object;.

parent dc0e478d
......@@ -80,6 +80,11 @@ static HRESULT WINAPI enum_class_object_QueryInterface(
{
*ppvObject = ec;
}
else if ( IsEqualGUID( riid, &IID_IClientSecurity ) )
{
*ppvObject = &client_security;
return S_OK;
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
......
......@@ -130,7 +130,7 @@ static const IClientSecurityVtbl client_security_vtbl =
client_security_CopyProxy
};
static IClientSecurity client_security = { &client_security_vtbl };
IClientSecurity client_security = { &client_security_vtbl };
struct wbem_services
{
......
......@@ -19,6 +19,8 @@
#include "wine/list.h"
#include "wine/unicode.h"
IClientSecurity client_security;
#define SIZEOF(array) (sizeof(array)/sizeof((array)[0]))
#define COL_TYPE_MASK 0x0000ffff
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment