blob: 1038274098f02aa91ee1db8d35b4382a426d604e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef H_RPMTE_PY
#define H_RPMTE_PY
#include <rpm/rpmte.h>
/** \ingroup py_c
* \file python/rpmte-py.h
*/
typedef struct rpmteObject_s {
PyObject_HEAD
PyObject *md_dict; /*!< to look like PyModuleObject */
rpmte te;
} rpmteObject;
extern PyTypeObject rpmte_Type;
rpmteObject * rpmte_Wrap(rpmte te);
#endif
|