From 62554db48d3824db292d32f926f95b274b379d43 Mon Sep 17 00:00:00 2001 From: Jeffery Myers Date: Fri, 8 Oct 2021 10:12:21 -0700 Subject: [PATCH] Add missing #endif to windows API defines (#2038) --- src/raylib.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/raylib.h b/src/raylib.h index fb52d8bc..31af5d57 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