Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0ceee481
Commit
0ceee481
authored
Jun 28, 2012
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Support IClientSecurity on the class enumerator object;.
parent
dc0e478d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
class.c
dlls/wbemprox/class.c
+5
-0
services.c
dlls/wbemprox/services.c
+1
-1
wbemprox_private.h
dlls/wbemprox/wbemprox_private.h
+2
-0
No files found.
dlls/wbemprox/class.c
View file @
0ceee481
...
...
@@ -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
));
...
...
dlls/wbemprox/services.c
View file @
0ceee481
...
...
@@ -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
{
...
...
dlls/wbemprox/wbemprox_private.h
View file @
0ceee481
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment