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
911a0c60
Commit
911a0c60
authored
Sep 28, 2023
by
Mohamad Al-Jaf
Committed by
Alexandre Julliard
Oct 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows.media.mediacontrol: Return success in…
windows.media.mediacontrol: Return success in ISystemMediaTransportControlsDisplayUpdater::Update(). Called by Roon.
parent
5861f8c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
main.c
dlls/windows.media.mediacontrol/main.c
+1
-1
mediacontrol.c
dlls/windows.media.mediacontrol/tests/mediacontrol.c
+3
-0
No files found.
dlls/windows.media.mediacontrol/main.c
View file @
911a0c60
...
...
@@ -476,7 +476,7 @@ static HRESULT WINAPI display_updater_ClearAll( ISystemMediaTransportControlsDis
static
HRESULT
WINAPI
display_updater_Update
(
ISystemMediaTransportControlsDisplayUpdater
*
iface
)
{
FIXME
(
"iface %p stub!
\n
"
,
iface
);
return
E_NOTIMPL
;
return
S_OK
;
}
static
const
struct
ISystemMediaTransportControlsDisplayUpdaterVtbl
display_updater_vtbl
=
...
...
dlls/windows.media.mediacontrol/tests/mediacontrol.c
View file @
911a0c60
...
...
@@ -171,6 +171,9 @@ static void test_MediaControlStatics(void)
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
ok
(
playback_type
==
MediaPlaybackType_Music
,
"got playback_type %d.
\n
"
,
playback_type
);
hr
=
ISystemMediaTransportControlsDisplayUpdater_Update
(
display_updater
);
ok
(
hr
==
S_OK
,
"got hr %#lx.
\n
"
,
hr
);
hr
=
ISystemMediaTransportControlsDisplayUpdater_get_MusicProperties
(
display_updater
,
&
music_properties
);
ok
(
hr
==
S_OK
,
"got hr %#lx.
\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