2 Oct
2023
2 Oct
'23
5:10 p.m.
Rémi Bernon (@rbernon) commented about dlls/windows.media.mediacontrol/main.c:
static HRESULT WINAPI media_control_get_PlaybackStatus( ISystemMediaTransportControls *iface, MediaPlaybackStatus *value ) { - FIXME( "iface %p, value %p stub!\n", iface, value ); - return E_NOTIMPL; + struct media_control *impl = impl_from_ISystemMediaTransportControls( iface ); + + TRACE( "iface %p, value %p\n", iface, value );
Maybe better to keep the `FIXME` and change them to "semi-stub", because this doesn't really do anything (unless you have a plan to make them do something useful shortly). -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3993#note_47394