From 2f7b9f5ae8be21c6c1d75ae9caefbc7b3f8986a9 Mon Sep 17 00:00:00 2001 From: Pablo Delgado Date: Thu, 16 Sep 2021 01:17:57 +0200 Subject: Fix incorrect WIN32 macros and missing Windows.h inclusion (#1939) * Replace WIN32 preprocessor macros with _WIN32 * Add missing Windows.h include for InterlockedIncrement --- source/core/slang-shared-library.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/core') diff --git a/source/core/slang-shared-library.cpp b/source/core/slang-shared-library.cpp index 844bea8d9..a67b10a42 100644 --- a/source/core/slang-shared-library.cpp +++ b/source/core/slang-shared-library.cpp @@ -13,7 +13,7 @@ #endif #include #include -#ifndef WIN32 +#ifndef _WIN32 # include #endif -- cgit v1.2.3