3c749bd5ef7c7550ff0607b3be645b8c52cc155b
[swftools.git] / lib / python / pyutils.h
1 #ifndef __pyutil_h__
2 #define __pyutil_h__
3 #include <Python.h>
4
5 #define PY_NONE Py_BuildValue("s", 0)
6
7 char* setError(char*format, ...);
8 void mylog(char*format, ...);
9 PyObject* FindMethodMore(PyObject*ret, PyMethodDef f[], PyObject*self, char* a);
10 void dummy_dealloc(PyObject* self);
11 #endif