blob: 28bc0e32e0ae6e3f343decf4afbd0a1b2ba729cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef H_RPMTE_PY
#define H_RPMTE_PY
#include <rpm/rpmte.h>
typedef struct rpmteObject_s rpmteObject;
extern PyTypeObject rpmte_Type;
#define rpmteObject_Check(v) ((v)->ob_type == &rpmte_Type)
PyObject * rpmte_Wrap(PyTypeObject *subtype, rpmte te);
#endif
|