fallout2-ce/src/interpreter_lib.h

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 */