From 903d98d565ad222f36a5d19dd985a607f717a0ec Mon Sep 17 00:00:00 2001 From: Hugues Delorme Date: Fri, 25 Jan 2013 15:37:06 +0100 Subject: [PATCH] Fix definition of FOUG_DECL macros --- src/c/global.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c/global.h b/src/c/global.h index 7010b95..2204419 100644 --- a/src/c/global.h +++ b/src/c/global.h @@ -1,7 +1,7 @@ #ifndef FOUG_C_GLOBAL_H #define FOUG_C_GLOBAL_H -#if defined(WIN64) || defined(_WIN64) || defined(__WIN64__) +#if defined(WIN64) || defined(_WIN64) || defined(__WIN64__) \ || defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__) # define FOUG_DECL_EXPORT __declspec(dllexport) # define FOUG_DECL_IMPORT __declspec(dllimport)