ofunc.h 751 B

123456789101112131415161718192021222324252627282930313233343536
  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 "int.h"
  9. #include "dou.h"
  10. #include "str.h"
  11. #include "bool.h"
  12. #include "pass.h"
  13. #include "list.h"
  14. #include "dict.h"
  15. #include "function.h"
  16. #include "listiter.h"
  17. #include "dictiter.h"
  18. #include "error_.h"
  19. #include "file_.h"
  20. #include "lib_.h"
  21. struct Argument;
  22. struct VarList;
  23. struct Inherit;
  24. struct Inter;
  25. struct NameFunc{
  26. wchar_t *name;
  27. OfficialFunction of;
  28. enum FunctionPtType type;
  29. };
  30. typedef struct NameFunc NameFunc;
  31. void registeredBaseFunction(struct LinkValue *father, Inter *inter);
  32. void registeredFunctionName(Inter *inter, LinkValue *belong);
  33. #endif //VIRTUALMATH_OFUNC_H