diff options
Diffstat (limited to 'platform/windows/tts_windows.h')
-rw-r--r-- | platform/windows/tts_windows.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/windows/tts_windows.h b/platform/windows/tts_windows.h index cf315b988d..c8a879e93a 100644 --- a/platform/windows/tts_windows.h +++ b/platform/windows/tts_windows.h @@ -57,9 +57,9 @@ class TTS_Windows { int id; }; HashMap<uint32_t, UTData> ids; + bool update_requested = false; static void __stdcall speech_event_callback(WPARAM wParam, LPARAM lParam); - void _update_tts(); static TTS_Windows *singleton; @@ -75,6 +75,8 @@ public: void resume(); void stop(); + void process_events(); + TTS_Windows(); ~TTS_Windows(); }; |