Fix MinGW compilation.

This commit is contained in:
Aaron van Geffen 2018-05-15 22:45:29 +02:00
parent 7e7e0427b3
commit bab66d1eaf
1 changed files with 6 additions and 0 deletions

View File

@ -14,6 +14,12 @@
*****************************************************************************/
#pragma endregion
#ifdef __MINGW32__
// 0x0600 == vista
#define WINVER 0x0600
#define _WIN32_WINNT 0x0600
#endif // __MINGW32__
#include <cwctype>
#include <stdexcept>
#include <vector>