19 lines
404 B
C++
19 lines
404 B
C++
#ifndef INTERPRETER_LIB_H
|
|
#define INTERPRETER_LIB_H
|
|
|
|
#include "interpreter.h"
|
|
|
|
namespace fallout {
|
|
|
|
typedef void(IntLibProgramDeleteCallback)(Program*);
|
|
|
|
void intLibUpdate();
|
|
void intLibExit();
|
|
void intLibInit();
|
|
void intLibRegisterProgramDeleteCallback(IntLibProgramDeleteCallback* callback);
|
|
void intLibRemoveProgramReferences(Program* program);
|
|
|
|
} // namespace fallout
|
|
|
|
#endif /* INTERPRETER_LIB_H */
|