1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

Fixes for MinGW's flawed _WIN32_WINNT stuff.

This commit is contained in:
Darryl Pogue
2012-02-04 19:15:35 -08:00
parent b27fc17b00
commit 8416c8ed42
2 changed files with 16 additions and 3 deletions

View File

@ -57,9 +57,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include <ddraw.h>
#include <d3dx9mesh.h>
#ifdef DX_OLD_SDK
#if defined(DX_OLD_SDK) || defined(__MINGW32__)
#include <dxerr9.h>
#define DXGetErrorString9 DXGetErrorString
#ifndef DXGetErrorString9
#define DXGetErrorString9 DXGetErrorString
#endif
#else
#include <dxerr.h>
#endif