Browse Source

compiledata - don't include main.h

This is part of the process of making compiledata.cpp independent
of espeakedit.
master
Reece H. Dunn 9 years ago
parent
commit
83d26f48fc
1 changed files with 11 additions and 1 deletions
  1. 11
    1
      src/compiledata.cpp

+ 11
- 1
src/compiledata.cpp View File

@@ -29,9 +29,9 @@
#include "wx/dir.h"
#include "wx/filename.h"
#include <wx/numdlg.h>
#include "wx/progdlg.h"

#include "speak_lib.h"
#include "main.h"
#include "speech.h"
#include "options.h"
#include "phoneme.h"
@@ -43,6 +43,16 @@
#include <unistd.h>
#endif

// wxWidgets 3 name changes
#if wxCHECK_VERSION(3, 0, 0)
#define wxOPEN wxFD_OPEN
#endif

extern wxProgressDialog *progress;
extern int progress_max;
extern int gui_flag;
extern char voice_name2[40];

extern void FindPhonemesUsed(void);
extern void DisplayErrorFile(const char *fname);
extern "C" int utf8_in(int *c, const char *buf);

Loading…
Cancel
Save