Imported version 0.2-1
[mstardict] / src / lib / ttsplugin.h
1 #ifndef _STARDICT_TTS_PLUGIN_H_
2 #define _STARDICT_TTS_PLUGIN_H_
3
4 struct StarDictTtsPlugInObject{
5         StarDictTtsPlugInObject();
6
7         typedef void (*saytext_func_t)(const char *text);
8         saytext_func_t saytext_func;
9         const char *tts_name;
10 };
11
12 #endif