summaryrefslogtreecommitdiff
path: root/src/threading/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/threading/event.h')
-rw-r--r--src/threading/event.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/threading/event.h b/src/threading/event.h
index ea087e53f..dba3ddb4c 100644
--- a/src/threading/event.h
+++ b/src/threading/event.h
@@ -30,7 +30,10 @@ DEALINGS IN THE SOFTWARE.
#include <condition_variable>
#include "threading/mutex.h"
#elif defined(_WIN32)
- #include <windef.h>
+ #ifndef WIN32_LEAN_AND_MEAN
+ #define WIN32_LEAN_AND_MEAN
+ #endif
+ #include <windows.h>
#else
#include <pthread.h>
#endif
@@ -66,4 +69,3 @@ private:
};
#endif
-