On Mon Jan 23 01:40:36 2023 +0000, Jinoh Kang wrote:
if (impl->worker_running || impl->worker_thread) { hr = COR_E_INVALIDOPERATION; } else if (!(impl->worker_thread = CreateThread(NULL, 0, session_worker_thread_cb, impl, 0, NULL))) { hr = HRESULT_FROM_WIN32(GetLastError()); } else { impl->worker_running = TRUE; impl->recognizer_state = SpeechRecognizerState_Capturing; }
Should be good now?