Browse Source

mbrowrap: fix building on Windows.

master
Reece H. Dunn 7 years ago
parent
commit
4b4da73558
1 changed files with 5 additions and 3 deletions
  1. 5
    3
      src/libespeak-ng/mbrowrap.c

+ 5
- 3
src/libespeak-ng/mbrowrap.c View File

@@ -18,6 +18,11 @@
*/

#include "config.h"

#if defined(_WIN32) || defined(_WIN64)
#include <windows.h>
#endif

#include "mbrowrap.h"

int (WINAPI *init_MBR)(char *voice_path);
@@ -33,9 +38,6 @@ void (WINAPI *setNoError_MBR)(int no_error);

#if defined(_WIN32) || defined(_WIN64)

#include <windows.h>


HINSTANCE hinstDllMBR = NULL;

BOOL load_MBR()

Loading…
Cancel
Save