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
04b57639
Commit
04b57639
authored
Feb 24, 2011
by
Austin English
Committed by
Alexandre Julliard
Feb 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
userenv/tests: Remove win9x hacks.
parent
21d6fc96
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
userenv.c
dlls/userenv/tests/userenv.c
+3
-6
No files found.
dlls/userenv/tests/userenv.c
View file @
04b57639
...
...
@@ -218,15 +218,12 @@ static void test_get_profiles_dir(void)
char
*
profiles_dir
,
*
buf
,
small_buf
[
1
];
l
=
RegOpenKeyExA
(
HKEY_LOCAL_MACHINE
,
ProfileListA
,
0
,
KEY_READ
,
&
key
);
if
(
l
)
{
win_skip
(
"No ProfileList key (Win9x), skipping tests
\n
"
);
return
;
}
ok
(
!
l
,
"RegOpenKeyExA failed: %d
\n
"
,
GetLastError
());
l
=
RegQueryValueExA
(
key
,
ProfilesDirectory
,
NULL
,
NULL
,
NULL
,
&
cch
);
if
(
l
)
{
win_skip
(
"No ProfilesDirectory value, skipping tests
\n
"
);
win_skip
(
"No ProfilesDirectory value
(NT4)
, skipping tests
\n
"
);
return
;
}
buf
=
HeapAlloc
(
GetProcessHeap
(),
0
,
cch
);
...
...
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