12345678910 |
- #ifndef AFUN_BYTECODE_HPP
- #define AFUN_BYTECODE_HPP
- AFUN_CORE_EXPORT extern char const * const writeByteCodeError[5];
- AFUN_CORE_EXPORT extern char const * const readByteCodeError[7];
- AFUN_CORE_EXPORT int readByteCode(af_Code **code, ConstFilePath path);
- AFUN_CORE_EXPORT int writeByteCode(af_Code *code, ConstFilePath path);
- #endif //AFUN_BYTECODE_HPP
|