Huw Davies (@huw) commented about dlls/mmdevapi/session.c:
+ *name = duplicate_wstr(session->display_name); + + return S_OK; }
static HRESULT WINAPI control_SetDisplayName(IAudioSessionControl2 *iface, const WCHAR *name, - const GUID *session) + const GUID *event_context) { struct audio_session_wrapper *This = impl_from_IAudioSessionControl2(iface); - FIXME("(%p)->(%p, %s) - stub\n", This, name, debugstr_guid(session)); - return E_NOTIMPL; + struct audio_session *session = This->session; + + TRACE("(%p)->(%p, %s) - stub\n", This, name, debugstr_guid(event_context)); + FIXME("Ignoring session_guid\n");
FIXME("Ignoring event_context\n");
And likewise in the next two commits. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5773#note_73043