Explorar el Código

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 hace 7 años
padre
commit
a187361c6f
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. +5
    -1
      src/raymath.h

+ 5
- 1
src/raymath.h Ver fichero

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

Cargando…
Cancelar
Guardar