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
77c19178
Commit
77c19178
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/tests: Use BOOL type where appropriate.
parent
8cdcf470
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mscoree.c
dlls/mscoree/tests/mscoree.c
+2
-2
No files found.
dlls/mscoree/tests/mscoree.c
View file @
77c19178
...
...
@@ -34,7 +34,7 @@ static HRESULT (WINAPI *pLoadLibraryShim)(LPCWSTR, LPCWSTR, LPVOID, HMODULE*);
static
HRESULT
(
WINAPI
*
pCreateConfigStream
)(
LPCWSTR
,
IStream
**
);
static
HRESULT
(
WINAPI
*
pCreateInterface
)(
REFCLSID
,
REFIID
,
VOID
**
);
static
int
no_legacy_runtimes
;
static
BOOL
no_legacy_runtimes
;
static
BOOL
init_functionpointers
(
void
)
{
...
...
@@ -87,7 +87,7 @@ static void test_versioninfo(void)
hr
=
pGetCORVersion
(
version
,
1
,
&
size
);
if
(
hr
==
CLR_E_SHIM_RUNTIME
)
{
no_legacy_runtimes
=
1
;
no_legacy_runtimes
=
TRUE
;
win_skip
(
"No legacy .NET runtimes are installed
\n
"
);
return
;
}
...
...
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