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).