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
90407224
Commit
90407224
authored
Oct 15, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 16, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Cleanup IClientSecurity interface of a proxy manager.
parent
21a04f56
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
marshal.c
dlls/ole32/marshal.c
+5
-5
No files found.
dlls/ole32/marshal.c
View file @
90407224
...
...
@@ -57,7 +57,7 @@ struct proxy_manager
{
IMultiQI
IMultiQI_iface
;
IMarshal
IMarshal_iface
;
const
IClientSecurityVtbl
*
lpVtblCliSec
;
IClientSecurity
IClientSecurity_iface
;
struct
apartment
*
parent
;
/* owning apartment (RO) */
struct
list
entry
;
/* entry in apartment (CS parent->cs) */
OXID
oxid
;
/* object exported ID (RO) */
...
...
@@ -80,7 +80,7 @@ static inline struct proxy_manager *impl_from_IMarshal( IMarshal *iface )
static
inline
struct
proxy_manager
*
impl_from_IClientSecurity
(
IClientSecurity
*
iface
)
{
return
(
struct
proxy_manager
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
struct
proxy_manager
,
lpVtblCliSec
)
);
return
CONTAINING_RECORD
(
iface
,
struct
proxy_manager
,
IClientSecurity_iface
);
}
static
HRESULT
unmarshal_object
(
const
STDOBJREF
*
stdobjref
,
APARTMENT
*
apt
,
...
...
@@ -756,7 +756,7 @@ static HRESULT proxy_manager_construct(
This
->
IMultiQI_iface
.
lpVtbl
=
&
ClientIdentity_Vtbl
;
This
->
IMarshal_iface
.
lpVtbl
=
&
ProxyMarshal_Vtbl
;
This
->
lpVtblCliSec
=
&
ProxyCliSec_Vtbl
;
This
->
IClientSecurity_iface
.
lpVtbl
=
&
ProxyCliSec_Vtbl
;
list_init
(
&
This
->
entry
);
list_init
(
&
This
->
interfaces
);
...
...
@@ -881,8 +881,8 @@ static HRESULT proxy_manager_query_local_interface(struct proxy_manager * This,
}
if
(
IsEqualIID
(
riid
,
&
IID_IClientSecurity
))
{
*
ppv
=
&
This
->
lpVtblCliSec
;
I
Unknown_AddRef
((
IUnknown
*
)
*
ppv
);
*
ppv
=
&
This
->
IClientSecurity_iface
;
I
ClientSecurity_AddRef
(
&
This
->
IClientSecurity_iface
);
return
S_OK
;
}
...
...
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