2
0
Эх сурвалжийг харах

Raymath dllexport fix if _WIN32 defined

- Added check for dllexport to compile if _WIN32 defined.
- If not defined then use the original RMDEF.
ChrisDill 7 жил өмнө
parent
commit
a187361c6f
1 өөрчлөгдсөн 5 нэмэгдсэн , 1 устгасан
  1. 5 1
      src/raymath.h

+ 5 - 1
src/raymath.h

@@ -60,7 +60,11 @@
 #endif
 
 #ifdef RAYMATH_IMPLEMENTATION
-    #define RMDEF __declspec(dllexport) extern inline // Provide external definition
+    #if defined(_WIN32)
+        #define RMDEF __declspec(dllexport) extern inline // Provide external definition
+    #else
+        #define RMDEF extern inline
+    #endif
 #elif defined RAYMATH_HEADER_ONLY
     #define RMDEF static inline // Functions may be inlined, no external out-of-line definition
 #else