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)
|
||||
#define USE_WINDOWS_SEH
|
||||
#endif
|
||||
#include <Windows.h>
|
||||
#include <DbgHelp.h>
|
||||
#include <TCHAR.H>
|
||||
#if defined (__MINGW32__)
|
||||
# include <windows.h>
|
||||
# include <dbghelp.h>
|
||||
# include <tchar.h>
|
||||
#else
|
||||
# include <Windows.h>
|
||||
# include <DbgHelp.h>
|
||||
# include <TCHAR.H>
|
||||
#endif
|
||||
#include <excpt.h>
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue