csomh / source-git / rpm

Forked from source-git/rpm 4 years ago
Clone
2ff057
#ifndef H_RPMARCHIVE_PY
2ff057
#define H_RPMARCHIVE_PY
2ff057
2ff057
#include <rpm/rpmarchive.h>
2ff057
2ff057
typedef struct rpmarchiveObject_s rpmarchiveObject;
2ff057
2ff057
extern PyTypeObject rpmarchive_Type;
2ff057
2ff057
#define rpmarchiveObject_Check(v)	((v)->ob_type == &rpmarchive_Type)
2ff057
2ff057
PyObject * rpmarchive_Wrap(PyTypeObject *subtype,
2ff057
			   rpmfiles files, rpmfi archive);
2ff057
2ff057
#endif