__ofunc.h 673 B

12345678910111213
  1. #ifndef VIRTUALMATH___OFUNC_H
  2. #define VIRTUALMATH___OFUNC_H
  3. #include "__virtualmath.h"
  4. #include "__base.h"
  5. #include "__run.h"
  6. LinkValue *registeredFunctionCore(OfficialFunction of, char *name, struct LinkValue *belong, INTER_FUNCTIONSIG_CORE);
  7. void iterNameFunc(NameFunc list[],struct LinkValue *father, INTER_FUNCTIONSIG_CORE);
  8. void iterClassFunc(NameFunc list[], LinkValue *father, INTER_FUNCTIONSIG_CORE);
  9. Value *makeBaseChildClass(Value *inherit, Inter *inter);
  10. bool checkIndex(vnum *index, const vnum *size, INTER_FUNCTIONSIG_NOT_ST);
  11. bool checkSlice(vnum *first, vnum *second, const vnum *stride, vnum size, INTER_FUNCTIONSIG_NOT_ST);
  12. #endif //VIRTUALMATH___OFUNC_H