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
0a350925
Commit
0a350925
authored
Mar 12, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Fix a test failure on W2K and earlier.
parent
7a8000d4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
shlfolder.c
dlls/shell32/tests/shlfolder.c
+4
-1
No files found.
dlls/shell32/tests/shlfolder.c
View file @
0a350925
...
@@ -757,7 +757,10 @@ static void test_GetAttributesOf(void)
...
@@ -757,7 +757,10 @@ static void test_GetAttributesOf(void)
if
(
FAILED
(
hr
))
return
;
if
(
FAILED
(
hr
))
return
;
hr
=
IShellFolder_GetAttributesOf
(
psfMyComputer
,
1
,
&
pidlEmpty
,
&
dwFlags
);
hr
=
IShellFolder_GetAttributesOf
(
psfMyComputer
,
1
,
&
pidlEmpty
,
&
dwFlags
);
todo_wine
{
ok
(
hr
==
E_INVALIDARG
,
"MyComputer->GetAttributesOf(emtpy pidl) should fail! hr = %08x
\n
"
,
hr
);
}
todo_wine
ok
(
hr
==
E_INVALIDARG
||
broken
(
SUCCEEDED
(
hr
)),
/* W2K and earlier */
"MyComputer->GetAttributesOf(emtpy pidl) should fail! hr = %08x
\n
"
,
hr
);
dwFlags
=
0xffffffff
;
dwFlags
=
0xffffffff
;
hr
=
IShellFolder_GetAttributesOf
(
psfMyComputer
,
0
,
NULL
,
&
dwFlags
);
hr
=
IShellFolder_GetAttributesOf
(
psfMyComputer
,
0
,
NULL
,
&
dwFlags
);
...
...
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