15 lines
359 B
C
15 lines
359 B
C
#ifndef INTERPRETER_LIB_H
|
|
#define INTERPRETER_LIB_H
|
|
|
|
#include "interpreter.h"
|
|
|
|
typedef void(IntLibProgramDeleteCallback)(Program*);
|
|
|
|
void intLibUpdate();
|
|
void intLibExit();
|
|
void intLibInit();
|
|
void intLibRegisterProgramDeleteCallback(IntLibProgramDeleteCallback* callback);
|
|
void intLibRemoveProgramReferences(Program* program);
|
|
|
|
#endif /* INTERPRETER_LIB_H */
|