ofunc.h 694 B

123456789101112131415161718192021222324252627282930313233
  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. #include "listiter.h"
  16. #include "dictiter.h"
  17. #include "error_.h"
  18. struct Argument;
  19. struct VarList;
  20. struct Inherit;
  21. struct Inter;
  22. struct NameFunc{
  23. char *name;
  24. OfficialFunction of;
  25. enum FunctionPtType type;
  26. };
  27. typedef struct NameFunc NameFunc;
  28. void registeredBaseFunction(struct LinkValue *father, Inter *inter);
  29. void registeredFunctionName(Inter *inter, LinkValue *belong);
  30. #endif //VIRTUALMATH_OFUNC_H