ofunc.h 601 B

1234567891011121314151617181920212223242526272829
  1. #ifndef VIRTUALMATH_OFUNC_H
  2. #define VIRTUALMATH_OFUNC_H
  3. #include "__macro.h"
  4. #include "io.h"
  5. #include "object.h"
  6. #include "vobject.h"
  7. #include "sys.h"
  8. #include "num.h"
  9. #include "str.h"
  10. #include "bool.h"
  11. #include "pass.h"
  12. #include "list.h"
  13. #include "dict.h"
  14. #include "function.h"
  15. struct Argument;
  16. struct VarList;
  17. struct FatherValue;
  18. struct NameFunc{
  19. char *name;
  20. OfficialFunction of;
  21. enum FunctionPtType type;
  22. };
  23. typedef struct NameFunc NameFunc;
  24. void registeredBaseFunction(struct LinkValue *father, Inter *inter);
  25. void registeredFunctionName(Inter *inter);
  26. #endif //VIRTUALMATH_OFUNC_H