Browse Source

Raymath dllexport fix if _WIN32 defined

- Added check for dllexport to compile if _WIN32 defined.
- If not defined then use the original RMDEF.
pull/625/head
ChrisDill 6 years ago
parent
commit
a187361c6f
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      src/raymath.h

+ 5
- 1
src/raymath.h View File

@ -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

Loading…
Cancel
Save