Prevent name mangling in C++
All checks were successful
CI / build-and-analyze (push) Successful in 1m31s
All checks were successful
CI / build-and-analyze (push) Successful in 1m31s
This commit is contained in:
@@ -1,6 +1,10 @@
|
|||||||
#ifndef CGE_MATH_H
|
#ifndef CGE_MATH_H
|
||||||
#define CGE_MATH_H
|
#define CGE_MATH_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
void CgeBox2fUnion(const float aMin[2], const float aMax[2],
|
void CgeBox2fUnion(const float aMin[2], const float aMax[2],
|
||||||
@@ -262,4 +266,8 @@ void CgeVec4iMax(const int a[4], const int b[4], int out[4]);
|
|||||||
void CgeVec4iClamp(const int in[4], int minVal, int maxVal, int out[4]);
|
void CgeVec4iClamp(const int in[4], int minVal, int maxVal, int out[4]);
|
||||||
void CgeVec4iAbs(const int in[4], int out[4]);
|
void CgeVec4iAbs(const int in[4], int out[4]);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* CGE_MATH_H */
|
#endif /* CGE_MATH_H */
|
||||||
|
|||||||
Reference in New Issue
Block a user