mirror of https://github.com/bsnes-emu/bsnes.git
Remove unnecessary WIN* defines.
We keep WINVER and _WIN32_WINNT because different versions of mingw-w64 have different defaults. Fixes #198.
This commit is contained in:
parent
e8105c46a7
commit
41f30f348a
|
@ -6,10 +6,8 @@
|
||||||
|
|
||||||
#undef UNICODE
|
#undef UNICODE
|
||||||
#undef WINVER
|
#undef WINVER
|
||||||
#undef WIN32_LEAN_AND_LEAN
|
#undef WIN32_LEAN_AND_MEAN
|
||||||
#undef _WIN32_WINNT
|
#undef _WIN32_WINNT
|
||||||
#undef _WIN32_IE
|
|
||||||
#undef __MSVCRT_VERSION__
|
|
||||||
#undef NOMINMAX
|
#undef NOMINMAX
|
||||||
#undef PATH_MAX
|
#undef PATH_MAX
|
||||||
|
|
||||||
|
@ -17,8 +15,6 @@
|
||||||
#define WINVER 0x0601
|
#define WINVER 0x0601
|
||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
#define _WIN32_WINNT WINVER
|
#define _WIN32_WINNT WINVER
|
||||||
#define _WIN32_IE WINVER
|
|
||||||
#define __MSVCRT_VERSION__ WINVER
|
|
||||||
#define NOMINMAX
|
#define NOMINMAX
|
||||||
#define PATH_MAX 260
|
#define PATH_MAX 260
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue