From 6110463dfea738899155349e66459862ce3b5ff1 Mon Sep 17 00:00:00 2001 From: Pierre Proske <117951793+pierre-aimi@users.noreply.github.com> Date: Mon, 13 Feb 2023 12:30:55 +1100 Subject: [PATCH] Update include/SQLiteCpp/SQLiteCppExport.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use _WIN32 instead of WIN32 Co-authored-by: Jonathan Guzmán --- include/SQLiteCpp/SQLiteCppExport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SQLiteCpp/SQLiteCppExport.h b/include/SQLiteCpp/SQLiteCppExport.h index c6322bb..dea371a 100644 --- a/include/SQLiteCpp/SQLiteCppExport.h +++ b/include/SQLiteCpp/SQLiteCppExport.h @@ -18,7 +18,7 @@ */ /* Windows DLL export/import */ -#if defined(WIN32) && defined(SQLITECPP_COMPILE_DLL) +#if defined(_WIN32) && defined(SQLITECPP_COMPILE_DLL) #if SQLITECPP_DLL_EXPORT #define DLL_API __declspec(dllexport) #pragma message("Exporting symbols")