13
0

Include windows.h on windows build for LARGE_INTEGER

This is necessary for a native build using MSYS2 with mingw-w64
This commit is contained in:
Tim Mayberry 2015-02-18 13:07:27 +10:00
parent ec4eb85cb9
commit 4c4863248c

View File

@ -37,6 +37,10 @@
#include <errno.h>
#include <time.h>
#ifdef PLATFORM_WINDOWS
#include <windows.h> // for LARGE_INTEGER
#endif
#ifdef WINDOWS_VST_SUPPORT
#include <fst.h>
#endif