blob: 9afd3554a6c70f368de220424435885d7c795887 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef H_RPMMI_PY
#define H_RPMMI_PY
/** \ingroup python
* \file python/rpmmi-py.h
*/
/** \ingroup python
*/
typedef struct rpmmiObject_s rpmmiObject;
/** \ingroup python
*/
struct rpmmiObject_s {
PyObject_HEAD;
rpmdbMatchIterator mi;
} ;
extern PyTypeObject rpmmi_Type;
rpmmiObject * rpmmi_Wrap(rpmdbMatchIterator mi);
#endif
|