Define WIN32_LEAN_AND_MEAN if it's not defined when including windows.h.

This commit is contained in:
Branimir Karadžić
2021-10-13 20:17:46 -07:00
parent 5c4fdc884b
commit 6c189a717a
5 changed files with 15 additions and 0 deletions

View File

@@ -15,6 +15,9 @@
#endif // BX_CRT_MSVC
#if BX_PLATFORM_WINDOWS || BX_PLATFORM_WINRT
# ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN
# endif // WIN32_LEAN_AND_MEAN
# include <windows.h>
# include <psapi.h>
#elif BX_PLATFORM_ANDROID \