From f35bede272ec43e6e26c0d806e634597146efeee Mon Sep 17 00:00:00 2001 From: Jeffery Myers Date: Fri, 8 Oct 2021 09:05:58 -0700 Subject: [PATCH] Add missing #endif to windows API defines --- src/raylib.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/raylib.h b/src/raylib.h index fb52d8bc2..31af5d57c 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -90,6 +90,7 @@ #define RLAPI __declspec(dllexport) // We are building the library as a Win32 shared library (.dll) #elif defined(USE_LIBTYPE_SHARED) #define RLAPI __declspec(dllimport) // We are using the library as a Win32 shared library (.dll) + #endif #endif #ifndef RLAPI