From 28d7584fc1ad11aff3bb59de130ffca45b4dd7b3 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Wed, 30 Dec 2020 17:41:57 +0100 Subject: [PATCH] Corrected build mode typo #117 --- src/raygui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raygui.h b/src/raygui.h index c250719..64a3dd7 100644 --- a/src/raygui.h +++ b/src/raygui.h @@ -139,7 +139,7 @@ // Define functions scope to be used internally (static) or externally (extern) to the module including this file #if defined(_WIN32) // Microsoft attibutes to tell compiler that symbols are imported/exported from a .dll - #if !defined(BUILD_LIBTYPE_SHARED) + #if defined(BUILD_LIBTYPE_SHARED) #define RAYGUIDEF __declspec(dllexport) // We are building raygui as a Win32 shared library (.dll) #elif defined(USE_LIBTYPE_SHARED) #define RAYGUIDEF __declspec(dllimport) // We are using raygui as a Win32 shared library (.dll)