Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e79e6e30
Commit
e79e6e30
authored
Jun 22, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: COM cleanup in corruntimehost.c.
parent
39d4656b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
corruntimehost.c
dlls/mscoree/corruntimehost.c
+10
-10
No files found.
dlls/mscoree/corruntimehost.c
View file @
e79e6e30
...
...
@@ -45,8 +45,8 @@ DEFINE_GUID(IID__AppDomain, 0x05f696dc,0x2b29,0x3663,0xad,0x8b,0xc4,0x38,0x9c,0x
struct
RuntimeHost
{
const
struct
ICorRuntimeHostVtbl
*
lpVtbl
;
const
struct
ICLRRuntimeHostVtbl
*
lpCLRHostVtbl
;
ICorRuntimeHost
ICorRuntimeHost_iface
;
ICLRRuntimeHost
ICLRRuntimeHost_iface
;
const
CLRRuntimeInfo
*
version
;
loaded_mono
*
mono
;
struct
list
domains
;
...
...
@@ -207,12 +207,12 @@ static HRESULT RuntimeHost_GetIUnknownForDomain(RuntimeHost *This, MonoDomain *d
static
inline
RuntimeHost
*
impl_from_ICLRRuntimeHost
(
ICLRRuntimeHost
*
iface
)
{
return
(
RuntimeHost
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
RuntimeHost
,
lpCLRHostVtbl
)
);
return
CONTAINING_RECORD
(
iface
,
RuntimeHost
,
ICLRRuntimeHost_iface
);
}
static
inline
RuntimeHost
*
impl_from_ICorRuntimeHost
(
ICorRuntimeHost
*
iface
)
{
return
(
RuntimeHost
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
RuntimeHost
,
lpVtbl
)
);
return
CONTAINING_RECORD
(
iface
,
RuntimeHost
,
ICorRuntimeHost_iface
);
}
/*** IUnknown methods ***/
...
...
@@ -476,13 +476,13 @@ static HRESULT WINAPI CLRRuntimeHost_QueryInterface(ICLRRuntimeHost* iface,
static
ULONG
WINAPI
CLRRuntimeHost_AddRef
(
ICLRRuntimeHost
*
iface
)
{
RuntimeHost
*
This
=
impl_from_ICLRRuntimeHost
(
iface
);
return
I
Unknown_AddRef
((
IUnknown
*
)
&
This
->
lpVtbl
);
return
I
CorRuntimeHost_AddRef
(
&
This
->
ICorRuntimeHost_iface
);
}
static
ULONG
WINAPI
CLRRuntimeHost_Release
(
ICLRRuntimeHost
*
iface
)
{
RuntimeHost
*
This
=
impl_from_ICLRRuntimeHost
(
iface
);
return
I
Unknown_Release
((
IUnknown
*
)
&
This
->
lpVtbl
);
return
I
CorRuntimeHost_Release
(
&
This
->
ICorRuntimeHost_iface
);
}
static
HRESULT
WINAPI
CLRRuntimeHost_Start
(
ICLRRuntimeHost
*
iface
)
...
...
@@ -794,8 +794,8 @@ HRESULT RuntimeHost_Construct(const CLRRuntimeInfo *runtime_version,
if
(
!
This
)
return
E_OUTOFMEMORY
;
This
->
lpVtbl
=
&
corruntimehost_vtbl
;
This
->
lpCLRHost
Vtbl
=
&
CLRHostVtbl
;
This
->
ICorRuntimeHost_iface
.
lpVtbl
=
&
corruntimehost_vtbl
;
This
->
ICLRRuntimeHost_iface
.
lp
Vtbl
=
&
CLRHostVtbl
;
This
->
ref
=
1
;
This
->
version
=
runtime_version
;
This
->
mono
=
loaded_mono
;
...
...
@@ -816,12 +816,12 @@ HRESULT RuntimeHost_GetInterface(RuntimeHost *This, REFCLSID clsid, REFIID riid,
if
(
IsEqualGUID
(
clsid
,
&
CLSID_CorRuntimeHost
))
{
unk
=
(
IUnknown
*
)
&
This
->
lpVtbl
;
unk
=
(
IUnknown
*
)
&
This
->
ICorRuntimeHost_iface
;
IUnknown_AddRef
(
unk
);
}
else
if
(
IsEqualGUID
(
clsid
,
&
CLSID_CLRRuntimeHost
))
{
unk
=
(
IUnknown
*
)
&
This
->
lpCLRHostVtbl
;
unk
=
(
IUnknown
*
)
&
This
->
ICLRRuntimeHost_iface
;
IUnknown_AddRef
(
unk
);
}
else
if
(
IsEqualGUID
(
clsid
,
&
CLSID_CorMetaDataDispenser
)
||
...
...
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