From 58eb313aa7d56b3aa6b25fb484032afbec143ff4 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Sat, 1 Nov 2025 16:54:21 +0000 Subject: [PATCH] add MWDECL git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@564 b9cfdab3-6d41-4d17-bbe4-086880011989 --- include/Mw/LowLevelMath.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/include/Mw/LowLevelMath.h b/include/Mw/LowLevelMath.h index 9dbdb85..fe885c3 100644 --- a/include/Mw/LowLevelMath.h +++ b/include/Mw/LowLevelMath.h @@ -56,7 +56,7 @@ struct _MwLLVec { MwLLVecUnion un; }; -MwLLVec _MwLLVecCreateGeneric(int ty, ...); +MWDECL MwLLVec _MwLLVecCreateGeneric(int ty, ...); #define MwLLVecU8x8(a, b, c, d, e, f, g, h) _MwLLVecCreateGeneric(_MwLLVecTypeU8x8, a, b, c, d, e, f, g, h) #define MwLLVecU16x4(a, b, c, d) _MwLLVecCreateGeneric(_MwLLVecTypeU16x4, a, b, c, d) @@ -65,17 +65,17 @@ MwLLVec _MwLLVecCreateGeneric(int ty, ...); #define MwLLVecI16x4(a, b, c, d) _MwLLVecCreateGeneric(_MwLLVecTypeI16x4, a, b, c, d) #define MwLLVecI32x2(a, b) _MwLLVecCreateGeneric(_MwLLVecTypeI32x2, a, b) -void MwLLMathAdd(MwLLVec* a, MwLLVec* b, MwLLVec* out); -void MwLLMathMultiply(MwLLVec* a, MwLLVec* b, MwLLVec* out); -void MwLLMathSub(MwLLVec* a, MwLLVec* b, MwLLVec* out); -void MwLLMathReciprocal(MwLLVec* a, MwLLVec* out); -void MwLLMathSquareRoot(MwLLVec* a, MwLLVec* out); -void MwLLMathAnd(MwLLVec* a, MwLLVec* b, MwLLVec* out); -void MwLLMathOr(MwLLVec* a, MwLLVec* b, MwLLVec* out); -void MwLLMathShiftRight(MwLLVec* a, MwLLVec* b, MwLLVec* out); -void MwLLMathShiftLeft(MwLLVec* a, MwLLVec* b, MwLLVec* out); -void MwLLMathEqual(MwLLVec* a, MwLLVec* b, MwLLVec* out); -void MwLLMathGreaterThen(MwLLVec* a, MwLLVec* b, MwLLVec* out); -void MwLLMathLesserThen(MwLLVec* a, MwLLVec* b, MwLLVec* out); +MWDECL void MwLLMathAdd(MwLLVec* a, MwLLVec* b, MwLLVec* out); +MWDECL void MwLLMathMultiply(MwLLVec* a, MwLLVec* b, MwLLVec* out); +MWDECL void MwLLMathSub(MwLLVec* a, MwLLVec* b, MwLLVec* out); +MWDECL void MwLLMathReciprocal(MwLLVec* a, MwLLVec* out); +MWDECL void MwLLMathSquareRoot(MwLLVec* a, MwLLVec* out); +MWDECL void MwLLMathAnd(MwLLVec* a, MwLLVec* b, MwLLVec* out); +MWDECL void MwLLMathOr(MwLLVec* a, MwLLVec* b, MwLLVec* out); +MWDECL void MwLLMathShiftRight(MwLLVec* a, MwLLVec* b, MwLLVec* out); +MWDECL void MwLLMathShiftLeft(MwLLVec* a, MwLLVec* b, MwLLVec* out); +MWDECL void MwLLMathEqual(MwLLVec* a, MwLLVec* b, MwLLVec* out); +MWDECL void MwLLMathGreaterThen(MwLLVec* a, MwLLVec* b, MwLLVec* out); +MWDECL void MwLLMathLesserThen(MwLLVec* a, MwLLVec* b, MwLLVec* out); #endif