From cdad81d190da16488c4cef8703743cca34ea1602 Mon Sep 17 00:00:00 2001 From: Jason Watkins Date: Wed, 3 May 2017 09:29:02 -0700 Subject: [PATCH] Fixed windows.h include in Test.h --- TestScripts/C Tests/Test.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TestScripts/C Tests/Test.h b/TestScripts/C Tests/Test.h index 1a71c38..5c40d40 100644 --- a/TestScripts/C Tests/Test.h +++ b/TestScripts/C Tests/Test.h @@ -12,7 +12,8 @@ #ifdef LINUX #include #endif -#ifdef WINDOWS +#ifdef _WIN32 +#define WIN32_LEAN_AND_MEAN #include #endif