2004-10-12 08:13:22 +08:00
|
|
|
#ifndef H_RPMPS_PY
|
|
|
|
#define H_RPMPS_PY
|
|
|
|
|
2007-12-08 20:02:32 +08:00
|
|
|
#include <rpm/rpmps.h>
|
2004-10-12 08:13:22 +08:00
|
|
|
|
2009-10-05 16:09:05 +08:00
|
|
|
typedef struct rpmProblemObject_s rpmProblemObject;
|
2004-10-12 08:13:22 +08:00
|
|
|
|
2009-10-05 16:09:05 +08:00
|
|
|
extern PyTypeObject rpmProblem_Type;
|
2004-10-12 08:13:22 +08:00
|
|
|
|
2009-10-05 16:09:05 +08:00
|
|
|
#define rpmProblemObject_Check(v) ((v)->ob_type == &rpmProblem_Type)
|
2009-09-23 05:06:13 +08:00
|
|
|
|
2009-11-18 16:41:26 +08:00
|
|
|
PyObject * rpmprob_Wrap(PyTypeObject *subtype, rpmProblem prob);
|
2004-10-13 14:26:16 +08:00
|
|
|
|
2010-03-13 18:28:26 +08:00
|
|
|
PyObject *rpmps_AsList(rpmps ps);
|
|
|
|
|
2004-10-12 08:13:22 +08:00
|
|
|
#endif
|