summaryrefslogtreecommitdiffstats
path: root/src/interpreter.h
blob: d21ad44d157882748be2dbd70cb164ac0f0be1e2 (plain)
1
2
3
4
5
6
7
8
9
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