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

*/ */


#include "config.h" #include "config.h"

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

#include "mbrowrap.h" #include "mbrowrap.h"


int (WINAPI *init_MBR)(char *voice_path); int (WINAPI *init_MBR)(char *voice_path);


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


#include <windows.h>


HINSTANCE hinstDllMBR = NULL; HINSTANCE hinstDllMBR = NULL;


BOOL load_MBR() BOOL load_MBR()

Loading…
Cancel
Save