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
2017977c
Commit
2017977c
authored
Jan 30, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 30, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Enumeration is not supported for pointer monikers.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5d5eb585
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
7 deletions
+4
-7
pointermoniker.c
dlls/ole32/pointermoniker.c
+4
-5
moniker.c
dlls/ole32/tests/moniker.c
+0
-2
No files found.
dlls/ole32/pointermoniker.c
View file @
2017977c
...
...
@@ -328,17 +328,16 @@ PointerMonikerImpl_ComposeWith(IMoniker* iface, IMoniker* pmkRight,
/******************************************************************************
* PointerMoniker_Enum
******************************************************************************/
static
HRESULT
WINAPI
PointerMonikerImpl_Enum
(
IMoniker
*
iface
,
BOOL
fForward
,
IEnumMoniker
**
ppenumMoniker
)
static
HRESULT
WINAPI
PointerMonikerImpl_Enum
(
IMoniker
*
iface
,
BOOL
fForward
,
IEnumMoniker
**
ppenumMoniker
)
{
TRACE
(
"
(%p,%d,%p)
\n
"
,
iface
,
fForward
,
ppenumMoniker
);
TRACE
(
"
%p, %d, %p.
\n
"
,
iface
,
fForward
,
ppenumMoniker
);
if
(
ppenumMoniker
==
NULL
)
if
(
!
ppenumMoniker
)
return
E_POINTER
;
*
ppenumMoniker
=
NULL
;
return
S_OK
;
return
E_NOTIMPL
;
}
/******************************************************************************
...
...
dlls/ole32/tests/moniker.c
View file @
2017977c
...
...
@@ -3008,11 +3008,9 @@ todo_wine
/* Enum() */
hr
=
IMoniker_Enum
(
moniker
,
TRUE
,
&
enummoniker
);
todo_wine
ok
(
hr
==
E_NOTIMPL
,
"Unexpected hr %#x.
\n
"
,
hr
);
hr
=
IMoniker_Enum
(
moniker
,
FALSE
,
&
enummoniker
);
todo_wine
ok
(
hr
==
E_NOTIMPL
,
"Unexpected hr %#x.
\n
"
,
hr
);
IMoniker_Release
(
moniker
);
...
...
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