From dc2a3cb3d4f73dd2f5315aecbd00460c55939018 Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Thu, 26 Jan 2023 14:36:46 +0100 Subject: [PATCH] temporary export even for embeded runtime --- src/runtime/c/pgf/pgf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/c/pgf/pgf.h b/src/runtime/c/pgf/pgf.h index 5d01a1ff6..dbbbcb6a2 100644 --- a/src/runtime/c/pgf/pgf.h +++ b/src/runtime/c/pgf/pgf.h @@ -13,8 +13,8 @@ #define PGF_API_DECL EXTERN_C __declspec(dllexport) #define PGF_API EXTERN_C __declspec(dllexport) #elif defined(COMPILING_STATIC_PGF) -#define PGF_API_DECL EXTERN_C -#define PGF_API EXTERN_C +#define PGF_API_DECL EXTERN_C __declspec(dllexport) +#define PGF_API EXTERN_C __declspec(dllexport) #else #define PGF_API_DECL __declspec(dllimport) #define PGF_API ERROR_NOT_COMPILING_LIBPGF