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
e5cc92f3
Commit
e5cc92f3
authored
Jan 26, 2011
by
Greg Geldorp
Committed by
Alexandre Julliard
Jan 26, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Remove shlwapi dependency.
parent
507ec2a4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
Makefile.in
dlls/shell32/tests/Makefile.in
+1
-1
shelldispatch.c
dlls/shell32/tests/shelldispatch.c
+3
-1
No files found.
dlls/shell32/tests/Makefile.in
View file @
e5cc92f3
TESTDLL
=
shell32.dll
IMPORTS
=
shell32 ole32 oleaut32
shlwapi
user32 advapi32
IMPORTS
=
shell32 ole32 oleaut32 user32 advapi32
C_SRCS
=
\
appbar.c
\
...
...
dlls/shell32/tests/shelldispatch.c
View file @
e5cc92f3
...
...
@@ -118,7 +118,9 @@ static void test_namespace(void)
r
=
pSHGetFolderPathW
(
NULL
,
CSIDL_PROGRAM_FILES
,
NULL
,
SHGFP_TYPE_CURRENT
,
path
);
ok
(
r
==
S_OK
,
"SHGetFolderPath failed: %08x
\n
"
,
r
);
p
=
PathFindFileNameW
(
path
);
p
=
path
+
lstrlenW
(
path
);
while
(
path
<
p
&&
*
(
p
-
1
)
!=
'\\'
)
p
--
;
ok
(
!
lstrcmpW
(
title
,
p
),
"expected %s, got %s
\n
"
,
wine_dbgstr_w
(
p
),
wine_dbgstr_w
(
title
));
}
...
...
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