Browse Source

Move the N_PATH_HOME declaration in speech.h to avoid a duplicate #ifdef check.

master
Reece H. Dunn 9 years ago
parent
commit
fa6f369329
1 changed files with 2 additions and 7 deletions
  1. 2
    7
      src/libespeak-ng/speech.h

+ 2
- 7
src/libespeak-ng/speech.h View File



#define PLATFORM_WINDOWS #define PLATFORM_WINDOWS
#define PATHSEP '\\' #define PATHSEP '\\'
#define N_PATH_HOME 230
#define NO_VARIADIC_MACROS #define NO_VARIADIC_MACROS


#else #else


#define PLATFORM_POSIX #define PLATFORM_POSIX
#define PATHSEP '/' #define PATHSEP '/'
#define N_PATH_HOME 160
#define USE_NANOSLEEP #define USE_NANOSLEEP
#define __cdecl #define __cdecl


} MNEM_TAB; } MNEM_TAB;
int LookupMnem(MNEM_TAB *table, const char *string); int LookupMnem(MNEM_TAB *table, const char *string);



#ifdef PLATFORM_WINDOWS
#define N_PATH_HOME 230
#else
#define N_PATH_HOME 160
#endif

extern char path_home[N_PATH_HOME]; // this is the espeak-data directory extern char path_home[N_PATH_HOME]; // this is the espeak-data directory


extern ESPEAK_NG_API void strncpy0(char *to, const char *from, int size); extern ESPEAK_NG_API void strncpy0(char *to, const char *from, int size);

Loading…
Cancel
Save