[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:
unknown 2015-11-16 19:12:57 -05:00
parent 5af1cfd3c2
commit 1f233320ba
2 changed files with 1 additions and 2 deletions

View File

@ -24,7 +24,7 @@
#ifndef _DEBUG_H_
#define _DEBUG_H_
#include <wtypes.h>
#include <windows.h>
#ifdef _DEBUG

View File

@ -29,7 +29,6 @@
#include "settings.h"
#include <tchar.h>
#include <wtypes.h>
#include "resource.h"
#include "Debug.h"