소스 검색

Raymath dllexport fix

- Added __declspec(dllexport) to RMDEF in raymath.h. This allows them to be accessed when importing from raylib.dll.
pull/625/head
ChrisDill 6 년 전
부모
커밋
42b52ecdb1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/raymath.h

+ 1
- 1
src/raymath.h 파일 보기

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

불러오는 중...
취소
저장