blob: 16565badadea1623571b6e53739df37b2e09d4da (
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
|
#ifndef H_RPMMI_PY
#define H_RPMMI_PY
/** \ingroup py_c
* \file python/rpmmi-py.h
*/
/** \ingroup py_c
*/
typedef struct rpmmiObject_s rpmmiObject;
/** \ingroup py_c
*/
struct rpmmiObject_s {
PyObject_HEAD
PyObject *md_dict; /*!< to look like PyModuleObject */
PyObject *ref; /* for db/ts refcounting */
rpmdbMatchIterator mi;
} ;
extern PyTypeObject rpmmi_Type;
rpmmiObject * rpmmi_Wrap(rpmdbMatchIterator mi, PyObject *s);
#endif
|