Added WIN32_LEAN_AND_MEAN

Should reduce compile times and help get rid of some error things.
This commit is contained in:
Andrew 2013-12-06 16:08:09 -06:00
parent 6ac94ddcb6
commit bab6c18965

View File

@ -7,6 +7,7 @@
#ifdef WIN32
#define PLATFORM_WINDOWS
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
// disable warnings about exception specifications,
@ -27,4 +28,4 @@
#define PLATFORM_PID pid_t
#else
#define PLATFORM_PID DWORD
#endif
#endif