26 Jan
2023
26 Jan
'23
5:24 a.m.
Bernhard Kölbl (@besentv) commented about dlls/windows.media.speech/recognizer.c:
static HRESULT WINAPI recognizer2_get_State( ISpeechRecognizer2 *iface, SpeechRecognizerState *state ) { - FIXME("iface %p, state %p stub!\n", iface, state); - return E_NOTIMPL; + struct recognizer *impl = impl_from_ISpeechRecognizer2(iface); + struct session *session = impl_from_ISpeechContinuousRecognitionSession(impl->session); + + FIXME("iface %p, state %p not all states are supported, yet!\n", iface, state);
```suggestion:-0+0 FIXME("iface %p, state %p not all states are supported, yet.\n", iface, state); ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1948#note_21956