blob: 9edde585e82ffc63242d7212b7917c8287f7f18a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef guard_speak_defs_voice_desc_h
#define guard_speak_defs_voice_desc_h
//==============================================================================
// Miranda Speak Plugin, © 2002 Ryan Winter
//==============================================================================
#include <string>
struct VoiceDesc
{
std::string engine;
std::string voice;
int volume;
int pitch;
int rate;
};
//==============================================================================
//
// Summary : struct describing a voice
//
// Description :
//
//==============================================================================
#endif
|