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
96b5670a
Commit
96b5670a
authored
Nov 03, 2019
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 04, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comsvcs: Implement IsSystemMoniker() for "new" moniker.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ee944716
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
main.c
dlls/comsvcs/main.c
+4
-2
comsvcs.c
dlls/comsvcs/tests/comsvcs.c
+1
-2
No files found.
dlls/comsvcs/main.c
View file @
96b5670a
...
...
@@ -621,9 +621,11 @@ static HRESULT WINAPI new_moniker_ParseDisplayName(IMoniker *iface, IBindCtx *pb
static
HRESULT
WINAPI
new_moniker_IsSystemMoniker
(
IMoniker
*
iface
,
DWORD
*
moniker_type
)
{
FIXM
E
(
"%p, %p.
\n
"
,
iface
,
moniker_type
);
TRAC
E
(
"%p, %p.
\n
"
,
iface
,
moniker_type
);
return
E_NOTIMPL
;
*
moniker_type
=
MKSYS_NONE
;
return
S_FALSE
;
}
static
const
IMonikerVtbl
new_moniker_vtbl
=
...
...
dlls/comsvcs/tests/comsvcs.c
View file @
96b5670a
...
...
@@ -332,10 +332,9 @@ static void test_new_moniker(void)
moniker_type
=
MKSYS_CLASSMONIKER
;
hr
=
IMoniker_IsSystemMoniker
(
moniker
,
&
moniker_type
);
todo_wine
{
ok
(
hr
==
S_FALSE
||
broken
(
hr
==
S_OK
)
/* XP */
,
"Unexpected hr %#x.
\n
"
,
hr
);
ok
(
moniker_type
==
MKSYS_NONE
,
"Unexpected moniker type %d.
\n
"
,
moniker_type
);
}
hr
=
IMoniker_IsRunning
(
moniker
,
NULL
,
NULL
,
NULL
);
todo_wine
ok
(
hr
==
S_FALSE
,
"Unexpected hr %#x.
\n
"
,
hr
);
...
...
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