diff options
Diffstat (limited to 'mmc_updater/src/Platform.h')
-rw-r--r-- | mmc_updater/src/Platform.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mmc_updater/src/Platform.h b/mmc_updater/src/Platform.h index 18072b38..6d9afdfb 100644 --- a/mmc_updater/src/Platform.h +++ b/mmc_updater/src/Platform.h @@ -7,7 +7,9 @@ #ifdef WIN32 #define PLATFORM_WINDOWS + #define WIN32_LEAN_AND_MEAN #include <windows.h> + #include <shellapi.h> // disable warnings about exception specifications, // which are not implemented in Visual C++ @@ -27,4 +29,4 @@ #define PLATFORM_PID pid_t #else #define PLATFORM_PID DWORD -#endif
\ No newline at end of file +#endif |