ofunc.h 734 B

1234567891011121314151617181920212223242526272829303132333435
  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. #include "file_.h"
  19. #include "lib_.h"
  20. struct Argument;
  21. struct VarList;
  22. struct Inherit;
  23. struct Inter;
  24. struct NameFunc{
  25. wchar_t *name;
  26. OfficialFunction of;
  27. enum FunctionPtType type;
  28. };
  29. typedef struct NameFunc NameFunc;
  30. void registeredBaseFunction(struct LinkValue *father, Inter *inter);
  31. void registeredFunctionName(Inter *inter, LinkValue *belong);
  32. #endif //VIRTUALMATH_OFUNC_H