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

@@ -39,12 +39,14 @@ extern "C"

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

#else

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

@@ -65,13 +67,6 @@ typedef struct {
} MNEM_TAB;
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 ESPEAK_NG_API void strncpy0(char *to, const char *from, int size);

Loading…
Cancel
Save