From 1fb931fbd950324754536ee0b33ed0b91f68c9a2 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 13 Nov 2018 19:47:07 -0800 Subject: GLK: Changing gargoyle folder to glk --- engines/glk/speech.h | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 engines/glk/speech.h (limited to 'engines/glk/speech.h') diff --git a/engines/glk/speech.h b/engines/glk/speech.h new file mode 100644 index 0000000000..5f9255565a --- /dev/null +++ b/engines/glk/speech.h @@ -0,0 +1,49 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#ifndef GLK_SPEECH_H +#define GLK_SPEECH_H + +#include "common/events.h" +#include "glk/glk_types.h" + +namespace Gargoyle { + +/** + * Currently not implemented + */ +class Speech { +protected: + void gli_initialize_tts(void) {} + + void gli_tts_flush(void) {} + + void gli_tts_purge(void) {} + + void gli_tts_speak(const glui32 *buf, size_t len) {} + + void gli_free_tts(void) {} +}; + +} // End of namespace Gargoyle + +#endif -- cgit v1.2.3