From 130c2686e26dde299bcb41db9a46423b3c4d6ff3 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Tue, 18 Oct 2016 21:32:03 -0400 Subject: [PATCH] Using WIN32 instead of _MSC_VER for windows detection --- src/bindings/python/openalprpy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/python/openalprpy.cpp b/src/bindings/python/openalprpy.cpp index 55018d3..aa6d365 100644 --- a/src/bindings/python/openalprpy.cpp +++ b/src/bindings/python/openalprpy.cpp @@ -6,7 +6,7 @@ extern "C" { -#if defined(_MSC_VER) +#if defined(WIN32) // Microsoft #define OPENALPR_EXPORT __declspec(dllexport) #else