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
03599dba
Commit
03599dba
authored
Apr 20, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Apr 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Fix a test that fails on all platforms.
parent
8422c98d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
shortcut.c
dlls/shdocvw/tests/shortcut.c
+7
-1
No files found.
dlls/shdocvw/tests/shortcut.c
View file @
03599dba
...
@@ -179,12 +179,18 @@ static void test_ShortcutFolder(void) {
...
@@ -179,12 +179,18 @@ static void test_ShortcutFolder(void) {
/* Convert the wszWineTestFolder string to an ITEMIDLIST. */
/* Convert the wszWineTestFolder string to an ITEMIDLIST. */
hr
=
IShellFolder_ParseDisplayName
(
pDesktopFolder
,
NULL
,
NULL
,
wszWineTestFolder
,
NULL
,
hr
=
IShellFolder_ParseDisplayName
(
pDesktopFolder
,
NULL
,
NULL
,
wszWineTestFolder
,
NULL
,
&
pidlWineTestFolder
,
NULL
);
&
pidlWineTestFolder
,
NULL
);
ok
(
SUCCEEDED
(
hr
),
"IShellFolder::ParseDisplayName failed! hr = %08x
\n
"
,
hr
);
todo_wine
{
ok
(
hr
==
HRESULT_FROM_WIN32
(
ERROR_INVALID_PARAMETER
),
"Expected %08x, got %08x
\n
"
,
HRESULT_FROM_WIN32
(
ERROR_INVALID_PARAMETER
),
hr
);
}
if
(
FAILED
(
hr
))
{
if
(
FAILED
(
hr
))
{
IShellFolder_Release
(
pDesktopFolder
);
IShellFolder_Release
(
pDesktopFolder
);
goto
cleanup
;
goto
cleanup
;
}
}
/* FIXME: these tests are never run */
/* Bind to a WineTest folder object. There has to be some support for this in shdocvw.dll.
/* Bind to a WineTest folder object. There has to be some support for this in shdocvw.dll.
* This isn't implemented in wine yet.*/
* This isn't implemented in wine yet.*/
hr
=
IShellFolder_BindToObject
(
pDesktopFolder
,
pidlWineTestFolder
,
NULL
,
&
IID_IShellFolder
,
hr
=
IShellFolder_BindToObject
(
pDesktopFolder
,
pidlWineTestFolder
,
NULL
,
&
IID_IShellFolder
,
...
...
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