blob: bcfc5ff41e9b715825bdd9e541f7d8d9517c7b6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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
|