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
2ecd3772
Commit
2ecd3772
authored
Sep 04, 2015
by
Vincent Povirk
Committed by
Alexandre Julliard
Sep 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Send Mono's debug output to Unix stderr.
parent
29a9ea18
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
metahost.c
dlls/mscoree/metahost.c
+18
-0
mscoree_private.h
dlls/mscoree/mscoree_private.h
+4
-0
No files found.
dlls/mscoree/metahost.c
View file @
2ecd3772
...
@@ -102,6 +102,8 @@ static char* (CDECL *mono_stringify_assembly_name)(MonoAssemblyName *aname);
...
@@ -102,6 +102,8 @@ static char* (CDECL *mono_stringify_assembly_name)(MonoAssemblyName *aname);
MonoThread
*
(
CDECL
*
mono_thread_attach
)(
MonoDomain
*
domain
);
MonoThread
*
(
CDECL
*
mono_thread_attach
)(
MonoDomain
*
domain
);
void
(
CDECL
*
mono_thread_manage
)(
void
);
void
(
CDECL
*
mono_thread_manage
)(
void
);
void
(
CDECL
*
mono_trace_set_assembly
)(
MonoAssembly
*
assembly
);
void
(
CDECL
*
mono_trace_set_assembly
)(
MonoAssembly
*
assembly
);
void
(
CDECL
*
mono_trace_set_print_handler
)(
MonoPrintCallback
callback
);
void
(
CDECL
*
mono_trace_set_printerr_handler
)(
MonoPrintCallback
callback
);
static
BOOL
get_mono_path
(
LPWSTR
path
);
static
BOOL
get_mono_path
(
LPWSTR
path
);
...
@@ -111,12 +113,18 @@ static MonoAssembly* mono_assembly_preload_hook_fn(MonoAssemblyName *aname, char
...
@@ -111,12 +113,18 @@ static MonoAssembly* mono_assembly_preload_hook_fn(MonoAssemblyName *aname, char
static
void
mono_shutdown_callback_fn
(
MonoProfiler
*
prof
);
static
void
mono_shutdown_callback_fn
(
MonoProfiler
*
prof
);
static
void
mono_print_handler_fn
(
const
char
*
string
,
INT
is_stdout
);
static
MonoImage
*
CDECL
image_open_module_handle_dummy
(
HMODULE
module_handle
,
static
MonoImage
*
CDECL
image_open_module_handle_dummy
(
HMODULE
module_handle
,
char
*
fname
,
UINT
has_entry_point
,
MonoImageOpenStatus
*
status
)
char
*
fname
,
UINT
has_entry_point
,
MonoImageOpenStatus
*
status
)
{
{
return
mono_image_open
(
fname
,
status
);
return
mono_image_open
(
fname
,
status
);
}
}
static
void
CDECL
set_print_handler_dummy
(
MonoPrintCallback
callback
)
{
}
static
void
missing_runtime_message
(
void
)
static
void
missing_runtime_message
(
void
)
{
{
MESSAGE
(
"wine: Install Mono for Windows to run .NET applications.
\n
"
);
MESSAGE
(
"wine: Install Mono for Windows to run .NET applications.
\n
"
);
...
@@ -204,11 +212,16 @@ static HRESULT load_mono(LPCWSTR mono_path)
...
@@ -204,11 +212,16 @@ static HRESULT load_mono(LPCWSTR mono_path)
} while (0);
} while (0);
LOAD_OPT_MONO_FUNCTION
(
mono_image_open_from_module_handle
,
image_open_module_handle_dummy
);
LOAD_OPT_MONO_FUNCTION
(
mono_image_open_from_module_handle
,
image_open_module_handle_dummy
);
LOAD_OPT_MONO_FUNCTION
(
mono_trace_set_print_handler
,
set_print_handler_dummy
);
LOAD_OPT_MONO_FUNCTION
(
mono_trace_set_printerr_handler
,
set_print_handler_dummy
);
#undef LOAD_OPT_MONO_FUNCTION
#undef LOAD_OPT_MONO_FUNCTION
mono_profiler_install
(
NULL
,
mono_shutdown_callback_fn
);
mono_profiler_install
(
NULL
,
mono_shutdown_callback_fn
);
mono_trace_set_print_handler
(
mono_print_handler_fn
);
mono_trace_set_printerr_handler
(
mono_print_handler_fn
);
mono_set_dirs
(
mono_lib_path_a
,
mono_etc_path_a
);
mono_set_dirs
(
mono_lib_path_a
,
mono_etc_path_a
);
mono_config_parse
(
NULL
);
mono_config_parse
(
NULL
);
...
@@ -244,6 +257,11 @@ static void mono_shutdown_callback_fn(MonoProfiler *prof)
...
@@ -244,6 +257,11 @@ static void mono_shutdown_callback_fn(MonoProfiler *prof)
is_mono_shutdown
=
TRUE
;
is_mono_shutdown
=
TRUE
;
}
}
static
void
mono_print_handler_fn
(
const
char
*
string
,
INT
is_stdout
)
{
wine_dbg_printf
(
"%s"
,
string
);
}
static
HRESULT
CLRRuntimeInfo_GetRuntimeHost
(
CLRRuntimeInfo
*
This
,
RuntimeHost
**
result
)
static
HRESULT
CLRRuntimeInfo_GetRuntimeHost
(
CLRRuntimeInfo
*
This
,
RuntimeHost
**
result
)
{
{
HRESULT
hr
=
S_OK
;
HRESULT
hr
=
S_OK
;
...
...
dlls/mscoree/mscoree_private.h
View file @
2ecd3772
...
@@ -132,6 +132,8 @@ typedef MonoAssembly* (*MonoAssemblyPreLoadFunc)(MonoAssemblyName *aname, char *
...
@@ -132,6 +132,8 @@ typedef MonoAssembly* (*MonoAssemblyPreLoadFunc)(MonoAssemblyName *aname, char *
typedef
void
(
*
MonoProfileFunc
)(
MonoProfiler
*
prof
);
typedef
void
(
*
MonoProfileFunc
)(
MonoProfiler
*
prof
);
typedef
void
(
*
MonoPrintCallback
)
(
const
char
*
string
,
INT
is_stdout
);
extern
BOOL
is_mono_started
DECLSPEC_HIDDEN
;
extern
BOOL
is_mono_started
DECLSPEC_HIDDEN
;
extern
MonoImage
*
(
CDECL
*
mono_assembly_get_image
)(
MonoAssembly
*
assembly
)
DECLSPEC_HIDDEN
;
extern
MonoImage
*
(
CDECL
*
mono_assembly_get_image
)(
MonoAssembly
*
assembly
)
DECLSPEC_HIDDEN
;
...
@@ -156,6 +158,8 @@ extern MonoString* (CDECL *mono_string_new)(MonoDomain *domain, const char *str)
...
@@ -156,6 +158,8 @@ extern MonoString* (CDECL *mono_string_new)(MonoDomain *domain, const char *str)
extern
MonoThread
*
(
CDECL
*
mono_thread_attach
)(
MonoDomain
*
domain
)
DECLSPEC_HIDDEN
;
extern
MonoThread
*
(
CDECL
*
mono_thread_attach
)(
MonoDomain
*
domain
)
DECLSPEC_HIDDEN
;
extern
void
(
CDECL
*
mono_thread_manage
)(
void
)
DECLSPEC_HIDDEN
;
extern
void
(
CDECL
*
mono_thread_manage
)(
void
)
DECLSPEC_HIDDEN
;
extern
void
(
CDECL
*
mono_trace_set_assembly
)(
MonoAssembly
*
assembly
)
DECLSPEC_HIDDEN
;
extern
void
(
CDECL
*
mono_trace_set_assembly
)(
MonoAssembly
*
assembly
)
DECLSPEC_HIDDEN
;
extern
void
(
CDECL
*
mono_trace_set_print_handler
)(
MonoPrintCallback
callback
)
DECLSPEC_HIDDEN
;
extern
void
(
CDECL
*
mono_trace_set_printerr_handler
)(
MonoPrintCallback
callback
)
DECLSPEC_HIDDEN
;
/* loaded runtime interfaces */
/* loaded runtime interfaces */
extern
void
expect_no_runtimes
(
void
)
DECLSPEC_HIDDEN
;
extern
void
expect_no_runtimes
(
void
)
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