X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/12f90800104b06e819eb9a7c2cd6ffcaf2003e0a..2d27932b3883a9e7a0e169caad004c16fd276808:/lib/python/python.h diff --git a/lib/python/python.h b/lib/python/python.h index f5f793ff..9edc50ad 100644 --- a/lib/python/python.h +++ b/lib/python/python.h @@ -4,9 +4,9 @@ #define __lib_python_python_class_h #endif +#include #include #include -#include #if !defined(SKIP_PART1) && !defined(SWIG) class ePyObject @@ -314,10 +314,16 @@ inline ePyObject Impl_PyTuple_GET_ITEM(ePyObject list, unsigned int pos) } #endif +inline void Impl_INCREF(PyObject *ob) +{ + Py_INCREF(ob); +} + inline void Impl_DECREF(PyObject *ob) { Py_DECREF(ob); } +#define Org_Py_INCREF(obj) Impl_INCREF(obj) #define Org_Py_DECREF(obj) Impl_DECREF(obj) #undef Py_DECREF #undef Py_XDECREF