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
34906421
Commit
34906421
authored
Nov 22, 2017
by
Lucian Poston
Committed by
Alexandre Julliard
Nov 24, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Stub GetRedirectionCapabilities with S_OK.
Signed-off-by:
Lucian Poston
<
lucian.poston@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cf415c62
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
shellpath.c
dlls/shell32/shellpath.c
+4
-2
shellpath.c
dlls/shell32/tests/shellpath.c
+0
-1
No files found.
dlls/shell32/shellpath.c
View file @
34906421
...
...
@@ -5555,8 +5555,10 @@ static HRESULT WINAPI knownfolder_GetRedirectionCapabilities(
IKnownFolder
*
iface
,
KF_REDIRECTION_CAPABILITIES
*
pCapabilities
)
{
FIXME
(
"%p
\n
"
,
pCapabilities
);
return
E_NOTIMPL
;
FIXME
(
"%p stub
\n
"
,
pCapabilities
);
if
(
!
pCapabilities
)
return
E_INVALIDARG
;
*
pCapabilities
=
KF_REDIRECTION_CAPABILITIES_DENY_ALL
;
return
S_OK
;
}
static
HRESULT
WINAPI
knownfolder_GetFolderDefinition
(
...
...
dlls/shell32/tests/shellpath.c
View file @
34906421
...
...
@@ -2121,7 +2121,6 @@ static void test_knownFolders(void)
CoTaskMemFree
(
folderPath
);
hr
=
IKnownFolder_GetRedirectionCapabilities
(
folder
,
&
redirectionCapabilities
);
todo_wine
ok
(
hr
==
S_OK
,
"failed to get redirection capabilities: 0x%08x
\n
"
,
hr
);
todo_wine
ok
(
redirectionCapabilities
==
0
,
"invalid redirection capabilities returned: %d
\n
"
,
redirectionCapabilities
);
...
...
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