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
d615acc8
Commit
d615acc8
authored
Jan 21, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Jan 21, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Fix a test failure on some platforms.
parent
3406c9de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
shlfolder.c
dlls/shell32/tests/shlfolder.c
+8
-1
No files found.
dlls/shell32/tests/shlfolder.c
View file @
d615acc8
...
...
@@ -1090,7 +1090,10 @@ static void test_FolderShortcut(void) {
static
const
GUID
CLSID_UnixDosFolder
=
{
0x9d20aae8
,
0x0625
,
0x44b0
,
{
0x9c
,
0xa7
,
0x71
,
0x88
,
0x9c
,
0x22
,
0x54
,
0xd9
}};
if
(
!
pSHGetSpecialFolderPathW
||
!
pStrRetToBufW
)
return
;
if
(
!
pSHGetSpecialFolderPathW
||
!
pStrRetToBufW
)
{
win_skip
(
"SHGetSpecialFolderPathW and/or StrRetToBufW are not available
\n
"
);
return
;
}
/* These tests basically show, that CLSID_FolderShortcuts are initialized
* via their IPersistPropertyBag interface. And that the target folder
...
...
@@ -1098,6 +1101,10 @@ static void test_FolderShortcut(void) {
*/
hr
=
CoCreateInstance
(
&
CLSID_FolderShortcut
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IPersistPropertyBag
,
(
LPVOID
*
)
&
pPersistPropertyBag
);
if
(
hr
==
REGDB_E_CLASSNOTREG
)
{
win_skip
(
"CLSID_FolderShortcut is not implemented
\n
"
);
return
;
}
ok
(
SUCCEEDED
(
hr
),
"CoCreateInstance failed! hr = 0x%08x
\n
"
,
hr
);
if
(
FAILED
(
hr
))
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