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
4c31892e
Commit
4c31892e
authored
Jun 02, 2015
by
Akihiro Sagawa
Committed by
Alexandre Julliard
Jun 02, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Make tests run on win2k again.
parent
2676488f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
shlfolder.c
dlls/shell32/tests/shlfolder.c
+4
-2
No files found.
dlls/shell32/tests/shlfolder.c
View file @
4c31892e
...
...
@@ -75,6 +75,7 @@ static UINT (WINAPI *pGetSystemWow64DirectoryW)(LPWSTR, UINT);
static
HRESULT
(
WINAPI
*
pSHCreateDefaultContextMenu
)(
const
DEFCONTEXTMENU
*
,
REFIID
,
void
**
);
static
HRESULT
(
WINAPI
*
pSHCreateShellFolderView
)(
const
SFV_CREATE
*
pcsfv
,
IShellView
**
ppsv
);
static
HRESULT
(
WINAPI
*
pSHCreateShellFolderViewEx
)(
LPCSFV
psvcbi
,
IShellView
**
ppv
);
static
HRESULT
(
WINAPI
*
pSHILCreateFromPath
)(
LPCWSTR
,
LPITEMIDLIST
*
,
DWORD
*
);
static
WCHAR
*
make_wstr
(
const
char
*
str
)
{
...
...
@@ -140,6 +141,7 @@ static void init_function_pointers(void)
MAKEFUNC_ORD
(
ILFindLastID
,
16
);
MAKEFUNC_ORD
(
ILIsEqual
,
21
);
MAKEFUNC_ORD
(
ILCombine
,
25
);
MAKEFUNC_ORD
(
SHILCreateFromPath
,
28
);
MAKEFUNC_ORD
(
ILFree
,
155
);
MAKEFUNC_ORD
(
SHSimpleIDListFromPathAW
,
162
);
#undef MAKEFUNC_ORD
...
...
@@ -4974,9 +4976,9 @@ static void test_SHChangeNotify(BOOL test_new_delivery)
entries
[
0
].
pidl
=
NULL
;
if
(
has_unicode
)
hr
=
SHILCreateFromPath
(
root_dirW
,
(
LPITEMIDLIST
*
)
&
entries
[
0
].
pidl
,
0
);
hr
=
p
SHILCreateFromPath
(
root_dirW
,
(
LPITEMIDLIST
*
)
&
entries
[
0
].
pidl
,
0
);
else
hr
=
SHILCreateFromPath
((
LPCVOID
)
root_dirA
,
(
LPITEMIDLIST
*
)
&
entries
[
0
].
pidl
,
0
);
hr
=
p
SHILCreateFromPath
((
LPCVOID
)
root_dirA
,
(
LPITEMIDLIST
*
)
&
entries
[
0
].
pidl
,
0
);
ok
(
hr
==
S_OK
,
"SHILCreateFromPath failed: 0x%08x
\n
"
,
hr
);
entries
[
0
].
fRecursive
=
TRUE
;
...
...
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