1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-03 18:07:53 +01:00

Move WINVER definition before including common.h

This commit is contained in:
Michał Janiszewski
2016-10-17 09:52:26 +02:00
committed by GitHub
parent 33c3432556
commit 7f5b70ea78

View File

@@ -14,16 +14,16 @@
*****************************************************************************/
#pragma endregion
#include "../common.h"
#ifdef __WINDOWS__
#ifdef __MINGW32__
// 0x0600 == vista
#define WINVER 0x0600
#define _WIN32_WINNT 0x0600
#endif // __MINGW32__
#include "../common.h"
#ifdef __WINDOWS__
#include <windows.h>
#include <lmcons.h>
#include <psapi.h>