Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
17bf6ef8
Commit
17bf6ef8
authored
Sep 28, 2008
by
Reece Dunn
Committed by
Alexandre Julliard
Oct 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Print the correct GUIDs in the shellpath tests.
parent
d9145df0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
shellpath.c
dlls/shell32/tests/shellpath.c
+3
-4
No files found.
dlls/shell32/tests/shellpath.c
View file @
17bf6ef8
...
...
@@ -272,10 +272,8 @@ static const char *getFolderName(int folder)
}
}
static
const
char
*
printGUID
(
const
GUID
*
guid
)
static
const
char
*
printGUID
(
const
GUID
*
guid
,
char
*
guidSTR
)
{
static
char
guidSTR
[
39
];
if
(
!
guid
)
return
NULL
;
sprintf
(
guidSTR
,
"{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}"
,
...
...
@@ -551,10 +549,11 @@ static void matchGUID(int folder, const GUID *guid)
pidlLast
->
mkid
.
abID
[
0
]
==
PT_GUID
))
{
GUID
*
shellGuid
=
(
GUID
*
)(
pidlLast
->
mkid
.
abID
+
2
);
char
shellGuidStr
[
39
],
guidStr
[
39
];
ok
(
IsEqualIID
(
shellGuid
,
guid
),
"%s: got GUID %s, expected %s
\n
"
,
getFolderName
(
folder
),
printGUID
(
shellGuid
),
printGUID
(
guid
));
printGUID
(
shellGuid
,
shellGuidStr
),
printGUID
(
guid
,
guidStr
));
}
IMalloc_Free
(
pMalloc
,
pidl
);
}
...
...
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