__ofunc.h 960 B

1234567891011121314151617181920
  1. #ifndef VIRTUALMATH___OFUNC_H
  2. #define VIRTUALMATH___OFUNC_H
  3. #include "__virtualmath.h"
  4. #include "__base.h"
  5. #include "__run.h"
  6. void newObjectSettingPresetting(LinkValue *func, LinkValue *name, Inter *inter);
  7. LinkValue *registeredFunctionCore(OfficialFunction of, wchar_t *name, INTER_FUNCTIONSIG_NOT_ST);
  8. bool iterNameFunc(NameFunc *list, INTER_FUNCTIONSIG_NOT_ST);
  9. bool iterClassFunc(NameFunc *list, INTER_FUNCTIONSIG_NOT_ST);
  10. void iterBaseNameFunc(NameFunc *list, struct LinkValue *father, INTER_FUNCTIONSIG_CORE);
  11. void iterBaseClassFunc(NameFunc *list, LinkValue *father, INTER_FUNCTIONSIG_CORE);
  12. LinkValue *makeBaseChildClass(LinkValue *inherit, Inter *inter);
  13. bool checkIndex(vnum *index, const vnum *size, INTER_FUNCTIONSIG_NOT_ST);
  14. bool checkSlice(vnum *first, vnum *second, const vnum *stride, vnum size, INTER_FUNCTIONSIG_NOT_ST);
  15. void addBaseClassVar(wchar_t *name, LinkValue *obj, LinkValue *belong, Inter *inter);
  16. #endif //VIRTUALMATH___OFUNC_H