csomh / source-git / rpm

Forked from source-git/rpm 4 years ago
Clone
2ff057
#ifndef H_RPMTD_PY
2ff057
#define H_RPMTD_PY
2ff057
2ff057
typedef struct rpmtdObject_s rpmtdObject;
2ff057
2ff057
extern PyTypeObject rpmtd_Type;
2ff057
2ff057
#define rpmtdObject_Check(v)	((v)->ob_type == &rpmtd_Type)
2ff057
2ff057
PyObject * rpmtd_ItemAsPyobj(rpmtd td, rpmTagClass tclass);
2ff057
PyObject * rpmtd_AsPyobj(rpmtd td);
2ff057
2ff057
int rpmtdFromPyObject(PyObject *obj, rpmtd *td);
2ff057
2ff057
#endif