ofunc.h 655 B

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