Configure the new 'fluidsynth' library to be buildable with MSVC

(haven't built any fluidsynth plugins yet)
This commit is contained in:
John Emmas 2016-08-28 10:31:43 +01:00
parent 4d7eb04cf6
commit b90cfa7e39
5 changed files with 521 additions and 6 deletions

View file

@ -121,6 +121,12 @@
#define STDOUT_FILENO 1
#define STDERR_FILENO 2
#elif defined _MSC_VER
#define STDIN_FILENO _fileno(stdin)
#define STDOUT_FILENO _fileno(stdout)
#define STDERR_FILENO _fileno(stderr)
#endif
/* Darwin special defines (taken from config_macosx.h) */