summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorJeffery Myers <[email protected]>2021-10-08 10:12:21 -0700
committerGitHub <[email protected]>2021-10-08 19:12:21 +0200
commit62554db48d3824db292d32f926f95b274b379d43 (patch)
treee245184fca22ded7f85e856b2526a4301330eef2 /src/raylib.h
parent94650f0def6a813611597dc55beae16ea71bcfd3 (diff)
downloadraylib-62554db48d3824db292d32f926f95b274b379d43.tar.gz
raylib-62554db48d3824db292d32f926f95b274b379d43.zip
Add missing #endif to windows API defines (#2038)
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h1
1 files changed, 1 insertions, 0 deletions
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