Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/linuxbsd_headers/speechd/speechd_defines.h
10278 views
1
/*
2
* speechd_defines.h - macros for Speech Dispatcher
3
*
4
* Copyright (C) 2015 Brailcom, o.p.s.
5
*
6
* This is free software; you can redistribute it and/or modify it
7
* under the terms of the GNU Lesser General Public License as published by
8
* the Free Software Foundation; either version 2.1, or (at your option)
9
* any later version.
10
*
11
* This software is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
* Lesser General Public License for more details.
15
*
16
* You should have received a copy of the GNU Lesser General Public License
17
* along with this package; see the file COPYING. If not, write to
18
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
* Boston, MA 02110-1301, USA.
20
*/
21
22
#ifndef SPEECHD_DEFINES_H
23
#define SPEECHD_DEFINES_H
24
25
#define SPD_ALLCLIENTS "ALL"
26
#define SPD_SELF "SELF"
27
#define SPD_VOLUME "VOLUME"
28
#define SPD_PITCH "PITCH"
29
#define SPD_RATE "RATE"
30
#define SPD_LANGUAGE "LANGUAGE"
31
#define SPD_OUTPUT_MODULE "OUTPUT_MODULE"
32
#define SPD_SYNTHESIS_VOICE "SYNTHESIS_VOICE"
33
34
#endif /* not ifndef SPEECHD_DEFINES_H */
35
36