Define WIN32_LEAN_AND_MEAN

This excludes Win APIs such as Cryptography, DDE, RPC, Shell, and Windows Sockets and thus speeds up compilation.
This commit is contained in:
tbeu 2015-10-01 14:27:34 +02:00
parent 5089329162
commit 2f0fed9212
1 changed files with 3 additions and 1 deletions

View File

@ -11,9 +11,11 @@
*/
#if !defined(WIN32_LEAN_AND_MEAN)
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#ifdef __cplusplus
extern "C" {
#endif