Only define Win32 crud macros if not defined already

master
Matt Arsenault ago%!(EXTRA string=13 years)
parent fcf54b4b27
commit 3bcde7e1cd
  1. 9
      src/win32_platform.h

@ -33,8 +33,13 @@
// We don't need all the fancy stuff
#define NOMINMAX
#define VC_EXTRALEAN
#ifndef NOMINMAX
#define NOMINMAX
#endif
#ifndef VC_EXTRALEAN
#define VC_EXTRALEAN
#endif
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN

Loading…
Cancel
Save