Modify eu-strip option to perform strip in post script of rpm package & add option...
[platform/upstream/rpm.git] / python / rpmte-py.h
1 #ifndef H_RPMTE_PY
2 #define H_RPMTE_PY
3
4 #include <rpm/rpmte.h>
5
6 typedef struct rpmteObject_s rpmteObject;
7
8 extern PyTypeObject rpmte_Type;
9
10 #define rpmteObject_Check(v)    ((v)->ob_type == &rpmte_Type)
11
12 PyObject * rpmte_Wrap(PyTypeObject *subtype, rpmte te);
13
14 #endif