use lowercase header filenames with MinGW toolchain (#3489)
This commit is contained in:
parent
098c0c44fd
commit
e13eba86e5
|
@ -72,9 +72,15 @@
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
#define USE_WINDOWS_SEH
|
#define USE_WINDOWS_SEH
|
||||||
#endif
|
#endif
|
||||||
#include <Windows.h>
|
#if defined (__MINGW32__)
|
||||||
#include <DbgHelp.h>
|
# include <windows.h>
|
||||||
#include <TCHAR.H>
|
# include <dbghelp.h>
|
||||||
|
# include <tchar.h>
|
||||||
|
#else
|
||||||
|
# include <Windows.h>
|
||||||
|
# include <DbgHelp.h>
|
||||||
|
# include <TCHAR.H>
|
||||||
|
#endif
|
||||||
#include <excpt.h>
|
#include <excpt.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue