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
8cdcf470
Commit
8cdcf470
authored
Feb 19, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Feb 19, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Use BOOL type where appropriate.
parent
a0d6c8c2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
metahost.c
dlls/mscoree/metahost.c
+2
-2
mscoree_private.h
dlls/mscoree/mscoree_private.h
+1
-1
No files found.
dlls/mscoree/metahost.c
View file @
8cdcf470
...
...
@@ -718,7 +718,7 @@ static void find_runtimes(void)
if
(
GetFileAttributesW
(
lib_path
)
!=
INVALID_FILE_ATTRIBUTES
)
{
runtimes
[
i
].
found
=
1
;
runtimes
[
i
].
found
=
TRUE
;
strcpyW
(
runtimes
[
i
].
mono_path
,
mono_path
);
strcpyW
(
runtimes
[
i
].
mscorlib_path
,
lib_path
);
...
...
@@ -733,7 +733,7 @@ static void find_runtimes(void)
/* 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
].
found
=
1
;
runtimes
[
i
].
found
=
TRUE
;
}
runtimes_initialized
=
TRUE
;
...
...
dlls/mscoree/mscoree_private.h
View file @
8cdcf470
...
...
@@ -64,7 +64,7 @@ typedef struct CLRRuntimeInfo
DWORD
major
;
DWORD
minor
;
DWORD
build
;
int
found
;
BOOL
found
;
WCHAR
mono_path
[
MAX_PATH
];
WCHAR
mscorlib_path
[
MAX_PATH
];
struct
RuntimeHost
*
loaded_runtime
;
...
...
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