summaryrefslogtreecommitdiff
path: root/python/rpmmi-py.h
blob: 68bed7bb9dafa17079750b96c3016cfb6b6b6fff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#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;
} ;

/*@unchecked@*/
extern PyTypeObject rpmmi_Type;

rpmmiObject * rpmmi_Wrap(rpmdbMatchIterator mi)
	/*@globals _Py_NoneStruct @*/
	/*@modifies mi, _Py_NoneStruct @*/;

#endif