|
#ifndef H_RPMII_PY
|
|
#define H_RPMII_PY
|
|
|
|
typedef struct rpmiiObject_s rpmiiObject;
|
|
|
|
extern PyTypeObject rpmii_Type;
|
|
|
|
#define rpmiiObject_Check(v) ((v)->ob_type == &rpmii_Type)
|
|
|
|
PyObject * rpmii_Wrap(PyTypeObject *subtype, rpmdbIndexIterator ii, PyObject *s);
|
|
|
|
#endif
|