Files
fallout2-ce/src/interpreter_lib.h
Alexander Batalov 9bb053b3ba Add namespace (#155)
2022-09-23 15:43:44 +03:00

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