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
38adec4a
Commit
38adec4a
authored
Oct 25, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Oct 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Use BOOL type where appropriate.
parent
02f5ebd0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
assembly.c
dlls/mscoree/assembly.c
+3
-3
metahost.c
dlls/mscoree/metahost.c
+2
-2
mscoree_main.c
dlls/mscoree/mscoree_main.c
+1
-1
No files found.
dlls/mscoree/assembly.c
View file @
38adec4a
...
...
@@ -63,7 +63,7 @@ typedef struct tagCLRTABLE
struct
tagASSEMBLY
{
int
is_mapped_file
;
BOOL
is_mapped_file
;
/* mapped files */
LPWSTR
path
;
...
...
@@ -213,7 +213,7 @@ HRESULT assembly_create(ASSEMBLY **out, LPCWSTR file)
if
(
!
assembly
)
return
E_OUTOFMEMORY
;
assembly
->
is_mapped_file
=
1
;
assembly
->
is_mapped_file
=
TRUE
;
assembly
->
path
=
strdupW
(
file
);
if
(
!
assembly
->
path
)
...
...
@@ -267,7 +267,7 @@ HRESULT assembly_from_hmodule(ASSEMBLY **out, HMODULE hmodule)
if
(
!
assembly
)
return
E_OUTOFMEMORY
;
assembly
->
is_mapped_file
=
0
;
assembly
->
is_mapped_file
=
FALSE
;
assembly
->
data
=
(
BYTE
*
)
hmodule
;
...
...
dlls/mscoree/metahost.c
View file @
38adec4a
...
...
@@ -648,7 +648,7 @@ static BOOL get_mono_path(LPWSTR path)
WCHAR
base_path
[
MAX_PATH
];
const
char
*
unix_data_dir
;
WCHAR
*
dos_data_dir
;
int
build_tree
=
0
;
BOOL
build_tree
=
FALSE
;
static
WCHAR
*
(
CDECL
*
wine_get_dos_file_name
)(
const
char
*
);
/* First try c:\windows\mono */
...
...
@@ -664,7 +664,7 @@ static BOOL get_mono_path(LPWSTR path)
if
(
!
unix_data_dir
)
{
unix_data_dir
=
wine_get_build_dir
();
build_tree
=
1
;
build_tree
=
TRUE
;
}
if
(
unix_data_dir
)
...
...
dlls/mscoree/mscoree_main.c
View file @
38adec4a
...
...
@@ -647,7 +647,7 @@ static void parse_msi_version_string(const char *version, int *parts)
static
BOOL
install_wine_mono
(
void
)
{
BOOL
is_wow64
=
0
;
BOOL
is_wow64
=
FALSE
;
HMODULE
hmsi
;
UINT
(
WINAPI
*
pMsiGetProductInfoA
)(
LPCSTR
,
LPCSTR
,
LPSTR
,
DWORD
*
);
char
versionstringbuf
[
15
];
...
...
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