aboutsummaryrefslogtreecommitdiff
path: root/redist/linmath.h
diff options
context:
space:
mode:
authorJustin Berger <j.david.berger@gmail.com>2018-04-08 15:50:49 -0600
committerJustin Berger <j.david.berger@gmail.com>2018-04-08 16:19:39 -0600
commita2e00c099d28e541c0e1fa1bd4fa8d3e386ae089 (patch)
treeff88618479b6ae76749b8398bbddae2977b5b8f5 /redist/linmath.h
parent7aa84b0f423a94e15c180a0834114692b6ba4870 (diff)
downloadlibsurvive-a2e00c099d28e541c0e1fa1bd4fa8d3e386ae089.tar.gz
libsurvive-a2e00c099d28e541c0e1fa1bd4fa8d3e386ae089.tar.bz2
Put compile inline hint for linmath functions
Diffstat (limited to 'redist/linmath.h')
-rw-r--r--redist/linmath.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/redist/linmath.h b/redist/linmath.h
index e268e96..60cc9d6 100644
--- a/redist/linmath.h
+++ b/redist/linmath.h
@@ -8,7 +8,7 @@ extern "C" {
#endif
#ifdef _WIN32
-#define LINMATH_EXPORT __declspec(dllexport)
+#define LINMATH_EXPORT extern __declspec(dllexport)
#else
#define LINMATH_EXPORT __attribute__((visibility("default")))
#endif
@@ -108,6 +108,7 @@ FLT quatmagnitude(const LinmathQuat q);
FLT quatinvsqmagnitude(const LinmathQuat q);
LINMATH_EXPORT void quatnormalize(LinmathQuat qout, const LinmathQuat qin); // Safe for in to be same as out.
LINMATH_EXPORT void quattomatrix(FLT *matrix44, const LinmathQuat q);
+LINMATH_EXPORT void quattomatrix33(FLT *matrix33, const LinmathQuat qin);
LINMATH_EXPORT void quatfrommatrix(LinmathQuat q, const FLT *matrix44);
LINMATH_EXPORT void quatfrommatrix33(LinmathQuat q, const FLT *matrix33);
LINMATH_EXPORT void quatgetconjugate(LinmathQuat qout, const LinmathQuat qin);