4 Jun
2024
4 Jun
'24
8:04 a.m.
Huw Davies (@huw) commented about dlls/mmdevapi/session.c:
- return E_NOTIMPL; + struct audio_session *session = This->session; + + TRACE("(%p)->(%p) - stub\n", This, name); + + if (!name) + return E_POINTER; + + *name = duplicate_wstr(session->display_name); + + return S_OK; }
static HRESULT WINAPI control_SetDisplayName(IAudioSessionControl2 *iface, const WCHAR *name, - const GUID *session) + const GUID *session_guid) Could we rename the last param to `event_context`? - I'm not sure why they were named `session` in the first place.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/5773#note_72286