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
fbe912d7
Commit
fbe912d7
authored
Oct 27, 2013
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 28, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: RuntimeHost_Destroy() is not used anymore so remove it.
parent
4dc152bd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
19 deletions
+0
-19
corruntimehost.c
dlls/mscoree/corruntimehost.c
+0
-17
mscoree_private.h
dlls/mscoree/mscoree_private.h
+0
-2
No files found.
dlls/mscoree/corruntimehost.c
View file @
fbe912d7
...
...
@@ -1269,23 +1269,6 @@ HRESULT RuntimeHost_GetInterface(RuntimeHost *This, REFCLSID clsid, REFIID riid,
return
CLASS_E_CLASSNOTAVAILABLE
;
}
HRESULT
RuntimeHost_Destroy
(
RuntimeHost
*
This
)
{
struct
DomainEntry
*
cursor
,
*
cursor2
;
This
->
lock
.
DebugInfo
->
Spare
[
0
]
=
0
;
DeleteCriticalSection
(
&
This
->
lock
);
LIST_FOR_EACH_ENTRY_SAFE
(
cursor
,
cursor2
,
&
This
->
domains
,
struct
DomainEntry
,
entry
)
{
list_remove
(
&
cursor
->
entry
);
HeapFree
(
GetProcessHeap
(),
0
,
cursor
);
}
HeapFree
(
GetProcessHeap
(),
0
,
This
);
return
S_OK
;
}
#define CHARS_IN_GUID 39
#define ARRAYSIZE(array) (sizeof(array)/sizeof((array)[0]))
...
...
dlls/mscoree/mscoree_private.h
View file @
fbe912d7
...
...
@@ -175,8 +175,6 @@ extern HRESULT RuntimeHost_GetIUnknownForObject(RuntimeHost *This, MonoObject *o
extern
HRESULT
RuntimeHost_CreateManagedInstance
(
RuntimeHost
*
This
,
LPCWSTR
name
,
MonoDomain
*
domain
,
MonoObject
**
result
)
DECLSPEC_HIDDEN
;
extern
HRESULT
RuntimeHost_Destroy
(
RuntimeHost
*
This
)
DECLSPEC_HIDDEN
;
HRESULT
WINAPI
CLRMetaHost_ExitProcess
(
ICLRMetaHost
*
iface
,
INT32
iExitCode
)
DECLSPEC_HIDDEN
;
HRESULT
WINAPI
CLRMetaHost_GetRuntime
(
ICLRMetaHost
*
iface
,
LPCWSTR
pwzVersion
,
REFIID
iid
,
LPVOID
*
ppRuntime
)
DECLSPEC_HIDDEN
;
...
...
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