1234567891011121314151617181920212223 |
- #ifndef VIRTUALMATH_OFUNC_H
- #define VIRTUALMATH_OFUNC_H
- #include "__macro.h"
- #include "io.h"
- #include "object.h"
- #include "sys.h"
- struct Argument;
- struct VarList;
- struct FatherValue;
- typedef enum ResultType (*OfficialFunction)(OfficialFunctionSig);
- typedef void (*Registered)(RegisteredFunctionSig);
- struct NameFunc{
- char *name;
- OfficialFunction of;
- };
- typedef struct NameFunc NameFunc;
- void registeredBaseFunction(struct LinkValue *father, Inter *inter);
- #endif //VIRTUALMATH_OFUNC_H
|