wbemprox: Support IClientSecurity on the class enumerator object;.
This commit is contained in:
parent
dc0e478d5c
commit
0ceee481fe
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue