23 Jan
2023
23 Jan
'23
1:42 a.m.
Jinoh Kang (@iamahuman) commented about dlls/windows.media.speech/recognizer.c:
+static HRESULT session_stop_async( IInspectable *invoker ) +{ + return S_OK; +} + static HRESULT WINAPI session_StopAsync( ISpeechContinuousRecognitionSession *iface, IAsyncAction **action ) { - FIXME("iface %p, action %p stub!\n", iface, action); - return E_NOTIMPL; + struct session *impl = impl_from_ISpeechContinuousRecognitionSession(iface); + HRESULT hr = S_OK; + HANDLE thread; + + TRACE("iface %p, action %p.\n", iface, action); + + hr = async_action_create(NULL, session_stop_async, action);
if (FAILED(hr = async_action_create(NULL, session_stop_async, action)))
return hr;
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/1948#note_21374