/native/external/espeak/platforms/windows/windows_sapi/src/speech.h
C++ Header | 65 lines | 22 code | 17 blank | 26 comment | 0 complexity | 4a01168b27ad9394df019ce4e723b386 MD5 | raw file
1/*************************************************************************** 2 * Copyright (C) 2005,2006 by Jonathan Duddington * 3 * jsd@clara.co.uk * 4 * * 5 * This program is free software; you can redistribute it and/or modify * 6 * it under the terms of the GNU General Public License as published by * 7 * the Free Software Foundation; either version 2 of the License, or * 8 * (at your option) any later version. * 9 * * 10 * This program is distributed in the hope that it will be useful, * 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 13 * GNU General Public License for more details. * 14 * * 15 * You should have received a copy of the GNU General Public License * 16 * along with this program; if not, write to the * 17 * Free Software Foundation, Inc., * 18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 19 ***************************************************************************/ 20 21// speech.h file for the Windows SAPI5 version of eSpeak 22 23 24// conditional compilation options 25 26#define PLATFORM_WINDOWS 27#define __WIN32__ 28#define NEED_WCSTOF 29#define NEED_GETOPT 30#define USE_MBROLA_LIB 31#define ESPEAK_API 32 33#define PATHSEP '\\' 34//#define PLATFORM_POSIX 35//#define __cdecl // define as null, needed for Borland compiler ? 36//#define USE_PORTAUDIO 37//#define USE_NANOSLEEP 38 39 40// will look for espeak_data directory here, and also in user's home directory 41#define PATH_ESPEAK_DATA "/usr/share/espeak-data" 42 43typedef unsigned short USHORT; 44typedef unsigned char UCHAR; 45typedef double DOUBLEX; 46 47 48 49 50typedef struct { 51 const char *mnem; 52 int value; 53} MNEM_TAB; 54int LookupMnem(MNEM_TAB *table, char *string); 55 56 57 58#define N_PATH_HOME 120 59extern char path_home[N_PATH_HOME]; // this is the espeak-data directory 60 61extern void strncpy0(char *to,const char *from, int size); 62int GetFileLength(const char *filename); 63char *Alloc(int size); 64void Free(void *ptr); 65