summaryrefslogtreecommitdiffstats
path: root/src/interpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/interpreter.h')
-rw-r--r--src/interpreter.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/interpreter.h b/src/interpreter.h
new file mode 100644
index 0000000..d21ad44
--- /dev/null
+++ b/src/interpreter.h
@@ -0,0 +1,10 @@
+#ifndef INTERPRETER_H
+#define INTERPRETER_H
+
+#include <Python.h>
+
+void interpreterInit();
+void interpreterFinalize();
+PyObject* executeFunction(const char *module, const char *funcName, const char* format, ...);
+
+#endif