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
2d899505
Commit
2d899505
authored
Oct 30, 2013
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Oct 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Rename function to match its use.
parent
45109f45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
metahost.c
dlls/mscoree/metahost.c
+3
-3
No files found.
dlls/mscoree/metahost.c
View file @
2d899505
...
...
@@ -110,7 +110,7 @@ void (CDECL *mono_trace_set_assembly)(MonoAssembly *assembly);
static
BOOL
find_mono_dll
(
LPCWSTR
path
,
LPWSTR
dll_path
);
static
MonoAssembly
*
mono_assembly_
search
_hook_fn
(
MonoAssemblyName
*
aname
,
char
**
assemblies_path
,
void
*
user_data
);
static
MonoAssembly
*
mono_assembly_
preload
_hook_fn
(
MonoAssemblyName
*
aname
,
char
**
assemblies_path
,
void
*
user_data
);
static
void
mono_shutdown_callback_fn
(
MonoProfiler
*
prof
);
...
...
@@ -236,7 +236,7 @@ static HRESULT load_mono(CLRRuntimeInfo *This)
mono_config_parse
(
NULL
);
mono_install_assembly_preload_hook
(
mono_assembly_
search
_hook_fn
,
NULL
);
mono_install_assembly_preload_hook
(
mono_assembly_
preload
_hook_fn
,
NULL
);
trace_size
=
GetEnvironmentVariableA
(
"WINE_MONO_TRACE"
,
trace_setting
,
sizeof
(
trace_setting
));
...
...
@@ -1253,7 +1253,7 @@ HRESULT get_file_from_strongname(WCHAR* stringnameW, WCHAR* assemblies_path, int
return
hr
;
}
static
MonoAssembly
*
mono_assembly_
search
_hook_fn
(
MonoAssemblyName
*
aname
,
char
**
assemblies_path
,
void
*
user_data
)
static
MonoAssembly
*
mono_assembly_
preload
_hook_fn
(
MonoAssemblyName
*
aname
,
char
**
assemblies_path
,
void
*
user_data
)
{
HRESULT
hr
;
MonoAssembly
*
result
=
NULL
;
...
...
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