diff options
author | Andrew <forkk@forkk.net> | 2013-12-06 16:08:09 -0600 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-12-06 16:08:09 -0600 |
commit | bab6c18965cffcba48f6a3884d5368053e6a3ddc (patch) | |
tree | b554d76f9a149367752971731c8ceef034c3a041 /mmc_updater/src/Platform.h | |
parent | 6ac94ddcb6f64ffae3948bed778bccc33a92f0fd (diff) | |
download | MultiMC-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/Platform.h')
-rw-r--r-- | mmc_updater/src/Platform.h | 3 |
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 |