"verbose" is not static anymore.
[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 extern int verbose;
8
9 char* setError(char*format, ...);
10 void mylog(char*format, ...);
11 PyObject* FindMethodMore(PyObject*ret, PyMethodDef f[], PyObject*self, char* a);
12 void dummy_dealloc(PyObject* self);
13 #endif