blob: ef07c72f803d8f16e55999b87f3519505dd3cd0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef H_RPMMI_PY
#define H_RPMMI_PY
typedef struct rpmmiObject_s rpmmiObject;
extern PyTypeObject rpmmi_Type;
#define rpmmiObject_Check(v) ((v)->ob_type == &rpmmi_Type)
PyObject * rpmmi_Wrap(PyTypeObject *subtype, rpmdbMatchIterator mi, PyObject *s);
#endif
|