Jinoh Kang (@iamahuman) commented about dlls/windows.media.speech/recognizer.c:
-static HRESULT WINAPI start_callback( IInspectable *invoker ) +static HRESULT session_start_async( IInspectable *invoker ) { return S_OK; }
static HRESULT WINAPI session_StartAsync( ISpeechContinuousRecognitionSession *iface, IAsyncAction **action ) { - FIXME("iface %p, action %p stub!\n", iface, action); - return async_action_create(NULL, start_callback, action); + struct session *impl = impl_from_ISpeechContinuousRecognitionSession(iface); + HRESULT hr = S_OK; + + TRACE("iface %p, action %p.\n", iface, action); + + hr = async_action_create(NULL, session_start_async, action);
if (FAILED(hr = async_action_create(NULL, session_start_async, action)))
return hr;
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/1948#note_21372