mirror of https://github.com/bsnes-emu/bsnes.git
Re-add WINVER and _WIN32_WINNT defines as apparently older mingw-w64 versions didn't define them high enough
This commit is contained in:
parent
aeb423ce3b
commit
bf2ab3f751
|
@ -5,12 +5,16 @@
|
||||||
#define interface WindowsInterface
|
#define interface WindowsInterface
|
||||||
|
|
||||||
#undef UNICODE
|
#undef UNICODE
|
||||||
|
#undef WINVER
|
||||||
#undef WIN32_LEAN_AND_MEAN
|
#undef WIN32_LEAN_AND_MEAN
|
||||||
|
#undef _WIN32_WINNT
|
||||||
#undef NOMINMAX
|
#undef NOMINMAX
|
||||||
#undef PATH_MAX
|
#undef PATH_MAX
|
||||||
|
|
||||||
#define UNICODE
|
#define UNICODE
|
||||||
|
#define WINVER 0x0601
|
||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
|
#define _WIN32_WINNT WINVER
|
||||||
#define NOMINMAX
|
#define NOMINMAX
|
||||||
#define PATH_MAX 260
|
#define PATH_MAX 260
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue