bytecode.h 342 B

12345678910
  1. #ifndef AFUN_BYTECODE_H
  2. #define AFUN_BYTECODE_H
  3. AFUN_CORE_EXPORT extern char const * const writeByteCodeError[5];
  4. AFUN_CORE_EXPORT extern char const * const readByteCodeError[7];
  5. AFUN_CORE_EXPORT int readByteCode(af_Code **code, FilePath path);
  6. AFUN_CORE_EXPORT int writeByteCode(af_Code *code, FilePath path);
  7. #endif //AFUN_BYTECODE_H