added extern c to most files
This commit is contained in:
parent
b024e8d5c1
commit
5badf331fd
7 changed files with 40 additions and 6 deletions
|
|
@ -3,16 +3,27 @@
|
|||
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct ARC_Point {
|
||||
int32_t x, y;
|
||||
int32_t x;
|
||||
int32_t y;
|
||||
} ARC_Point;
|
||||
|
||||
typedef struct ARC_UPoint {
|
||||
uint32_t x, y;
|
||||
uint32_t x;
|
||||
uint32_t y;
|
||||
} ARC_UPoint;
|
||||
|
||||
typedef struct ARC_FPoint {
|
||||
float x, y;
|
||||
float x;
|
||||
float y;
|
||||
} ARC_FPoint;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // ARC_MATH_POINT_H_
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue