Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
ed960787
Commit
ed960787
authored
Mar 20, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Mar 20, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon/tests: Use BOOL type where appropriate.
parent
cd93070b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
misc.c
dlls/urlmon/tests/misc.c
+4
-3
No files found.
dlls/urlmon/tests/misc.c
View file @
ed960787
...
...
@@ -1740,7 +1740,8 @@ static void test_internet_features_registry(void) {
char
*
name
;
HKEY
feature_control
;
HKEY
feature
;
DWORD
value
,
skip_zone
;
DWORD
value
;
BOOL
skip_zone
;
BOOL
delete_feature_key
=
TRUE
;
static
const
char
*
szFeatureBehaviorsKey
=
"FEATURE_BEHAVIORS"
;
...
...
@@ -1805,11 +1806,11 @@ static void test_internet_features_registry(void) {
if
(
res
==
ERROR_ACCESS_DENIED
)
{
skip
(
"Not allowed to modify zone elevation
\n
"
);
skip_zone
=
1
;
skip_zone
=
TRUE
;
}
else
{
skip_zone
=
0
;
skip_zone
=
FALSE
;
ok
(
res
==
ERROR_SUCCESS
,
"RegSetValueEx failed: %d
\n
"
,
res
);
hres
=
pCoInternetIsFeatureEnabled
(
FEATURE_ZONE_ELEVATION
,
GET_FEATURE_FROM_PROCESS
);
...
...
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