diff options
author | Paul Gilbert | 2018-10-23 19:25:00 -0700 |
---|---|---|
committer | Paul Gilbert | 2018-12-08 19:05:59 -0800 |
commit | ba907c9aec333903acb013e9d3a25962c69b6ca6 (patch) | |
tree | fe2cb6f5dbf613505cb990b18065706dabd1469c /engines/gargoyle/speech.h | |
parent | cb2b7d439fb9cb89f2758d103ba2ea710e4f0a72 (diff) | |
download | scummvm-rg350-ba907c9aec333903acb013e9d3a25962c69b6ca6.tar.gz scummvm-rg350-ba907c9aec333903acb013e9d3a25962c69b6ca6.tar.bz2 scummvm-rg350-ba907c9aec333903acb013e9d3a25962c69b6ca6.zip |
GLK: Implementing text buffer window methods
Diffstat (limited to 'engines/gargoyle/speech.h')
-rw-r--r-- | engines/gargoyle/speech.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/engines/gargoyle/speech.h b/engines/gargoyle/speech.h new file mode 100644 index 0000000000..1ff2cb178d --- /dev/null +++ b/engines/gargoyle/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 GARGOYLE_SPEECH_H +#define GARGOYLE_SPEECH_H + +#include "common/events.h" +#include "gargoyle/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 |