summaryrefslogtreecommitdiffstats
path: root/mmc_updater/src
diff options
context:
space:
mode:
authorAndrew <forkk@forkk.net>2013-12-06 16:08:09 -0600
committerAndrew <forkk@forkk.net>2013-12-06 16:08:09 -0600
commitbab6c18965cffcba48f6a3884d5368053e6a3ddc (patch)
treeb554d76f9a149367752971731c8ceef034c3a041 /mmc_updater/src
parent6ac94ddcb6f64ffae3948bed778bccc33a92f0fd (diff)
downloadMultiMC-bab6c18965cffcba48f6a3884d5368053e6a3ddc.tar
MultiMC-bab6c18965cffcba48f6a3884d5368053e6a3ddc.tar.gz
MultiMC-bab6c18965cffcba48f6a3884d5368053e6a3ddc.tar.lz
MultiMC-bab6c18965cffcba48f6a3884d5368053e6a3ddc.tar.xz
MultiMC-bab6c18965cffcba48f6a3884d5368053e6a3ddc.zip
Added WIN32_LEAN_AND_MEAN
Should reduce compile times and help get rid of some error things.
Diffstat (limited to 'mmc_updater/src')
-rw-r--r--mmc_updater/src/Platform.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/mmc_updater/src/Platform.h b/mmc_updater/src/Platform.h
index 18072b38..c17951cc 100644
--- a/mmc_updater/src/Platform.h
+++ b/mmc_updater/src/Platform.h
@@ -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 \ No newline at end of file
+#endif