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
1 changed files with 4 additions and 4 deletions

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>