Blame python/rpmmi-py.h

Packit Service 7203c3
#ifndef H_RPMMI_PY
Packit Service 7203c3
#define H_RPMMI_PY
Packit Service 7203c3
Packit Service 7203c3
typedef struct rpmmiObject_s rpmmiObject;
Packit Service 7203c3
Packit Service 7203c3
extern PyTypeObject rpmmi_Type;
Packit Service 7203c3
Packit Service 7203c3
#define rpmmiObject_Check(v)	((v)->ob_type == &rpmmi_Type)
Packit Service 7203c3
Packit Service 7203c3
PyObject * rpmmi_Wrap(PyTypeObject *subtype, rpmdbMatchIterator mi, PyObject *s);
Packit Service 7203c3
Packit Service 7203c3
#endif