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
add7454d
Commit
add7454d
authored
Nov 09, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Nov 09, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Report that all .NET versions are installed if Mono is missing.
parent
9dc2c5cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
3 deletions
+14
-3
metahost.c
dlls/mscoree/metahost.c
+14
-3
No files found.
dlls/mscoree/metahost.c
View file @
add7454d
...
...
@@ -69,6 +69,12 @@ static CRITICAL_SECTION runtime_list_cs = { &runtime_list_cs_debug, -1, 0, 0, 0,
static
HRESULT
load_mono
(
CLRRuntimeInfo
*
This
,
loaded_mono
**
result
)
{
/* FIXME: stub */
if
(
This
->
mono_abi_version
==
-
1
)
MESSAGE
(
"wine: Install the Windows version of Mono to run .NET executables
\n
"
);
if
(
This
->
mono_abi_version
<=
0
)
return
E_FAIL
;
*
result
=
NULL
;
return
S_OK
;
...
...
@@ -517,10 +523,15 @@ static void find_runtimes(void)
}
}
runtimes_initialized
=
1
;
if
(
!
any_runtimes_found
)
MESSAGE
(
"wine: Install the Windows version of Mono to run .NET executables
\n
"
);
{
/* Report all runtimes are available if Mono isn't installed.
* FIXME: Remove this when Mono is properly packaged. */
for
(
i
=
0
;
i
<
NUM_RUNTIMES
;
i
++
)
runtimes
[
i
].
mono_abi_version
=
-
1
;
}
runtimes_initialized
=
1
;
end:
LeaveCriticalSection
(
&
runtime_list_cs
);
...
...
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