43 lines
739 B
C
43 lines
739 B
C
#ifndef ARC_MATH_CONFIG_H_
|
|
#define ARC_MATH_CONFIG_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "arc/std/config.h"
|
|
|
|
typedef struct ARC_Config ARC_Config;
|
|
|
|
/**
|
|
* @brief
|
|
*/
|
|
void ARC_Config_InitMath(ARC_Config *config);
|
|
|
|
/**
|
|
* @brief
|
|
*/
|
|
void ARC_ConfigType_PointCopyFn(void **type, ARC_ParserTagToken *parsedData, ARC_Config *config, void *userdata);
|
|
|
|
/**
|
|
* @brief
|
|
*/
|
|
void ARC_ConfigType_PointDestroyFn(ARC_Config *config, void *type);
|
|
|
|
/**
|
|
* @brief
|
|
*/
|
|
void ARC_ConfigType_RectCopyFn(void **type, ARC_ParserTagToken *parsedData, ARC_Config *config, void *userdata);
|
|
|
|
/**
|
|
* @brief
|
|
*/
|
|
void ARC_ConfigType_RectDestroyFn(ARC_Config *config, void *type);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //ARC_MATH_CONFIG_H_
|