[N-Rage] Include windows.h, not wtypes.h, for Windows API types.
<wtypes.h> may include all the BOOL/DWORD/etc. stuff as a low-level MSVC header, but it is not obligated to do so per the low-level header specifications for other compilers, such as (evidently) MinGW.
This commit is contained in:
parent
5af1cfd3c2
commit
1f233320ba
|
@ -24,7 +24,7 @@
|
||||||
#ifndef _DEBUG_H_
|
#ifndef _DEBUG_H_
|
||||||
#define _DEBUG_H_
|
#define _DEBUG_H_
|
||||||
|
|
||||||
#include <wtypes.h>
|
#include <windows.h>
|
||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,6 @@
|
||||||
|
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
#include <tchar.h>
|
#include <tchar.h>
|
||||||
#include <wtypes.h>
|
|
||||||
#include "resource.h"
|
#include "resource.h"
|
||||||
#include "Debug.h"
|
#include "Debug.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue