Unverified Commit 5aa5c987 authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Added #define WIN32_LEAN_AND_MEAN before including windows.h (#1729)

Co-authored-by: default avatargabime <gmelman1@mgail.com>
parent 397ad1be
...@@ -23,12 +23,14 @@ ...@@ -23,12 +23,14 @@
#endif #endif
#ifdef _WIN32 #ifdef _WIN32
# if defined(NOMINMAX) # if !defined(NOMINMAX) && !defined(WIN32_LEAN_AND_MEAN)
# include <windows.h>
# else
# define NOMINMAX # define NOMINMAX
# define WIN32_LEAN_AND_MEAN
# include <windows.h> # include <windows.h>
# undef WIN32_LEAN_AND_MEAN
# undef NOMINMAX # undef NOMINMAX
# else
# include <windows.h>
# endif # endif
# include <io.h> # include <io.h>
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment