Commit 26c9bd9f authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

mscoree: Remove "Install Mono for Windows" message.

parent f34be7c6
...@@ -126,11 +126,6 @@ static void CDECL set_print_handler_dummy(MonoPrintCallback callback) ...@@ -126,11 +126,6 @@ static void CDECL set_print_handler_dummy(MonoPrintCallback callback)
{ {
} }
static void missing_runtime_message(void)
{
MESSAGE("wine: Install Mono for Windows to run .NET applications.\n");
}
static HRESULT load_mono(LPCWSTR mono_path) static HRESULT load_mono(LPCWSTR mono_path)
{ {
static const WCHAR lib[] = {'\\','l','i','b',0}; static const WCHAR lib[] = {'\\','l','i','b',0};
...@@ -277,7 +272,7 @@ static HRESULT CLRRuntimeInfo_GetRuntimeHost(CLRRuntimeInfo *This, RuntimeHost * ...@@ -277,7 +272,7 @@ static HRESULT CLRRuntimeInfo_GetRuntimeHost(CLRRuntimeInfo *This, RuntimeHost *
if (!get_mono_path(mono_path)) if (!get_mono_path(mono_path))
{ {
missing_runtime_message(); ERR("Wine Mono is not installed\n");
return CLR_E_SHIM_RUNTIME; return CLR_E_SHIM_RUNTIME;
} }
...@@ -1306,8 +1301,6 @@ HRESULT get_runtime_info(LPCWSTR exefile, LPCWSTR version, LPCWSTR config_file, ...@@ -1306,8 +1301,6 @@ HRESULT get_runtime_info(LPCWSTR exefile, LPCWSTR version, LPCWSTR config_file,
} }
} }
missing_runtime_message();
return CLR_E_SHIM_RUNTIME; return CLR_E_SHIM_RUNTIME;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment