fix msm-plugin.c svace issue: make sure dupPath is not NULL before strchr()
[platform/upstream/rpm.git] / python / rpmmi-py.h
1 #ifndef H_RPMMI_PY
2 #define H_RPMMI_PY
3
4 typedef struct rpmmiObject_s rpmmiObject;
5
6 extern PyTypeObject rpmmi_Type;
7
8 #define rpmmiObject_Check(v)    ((v)->ob_type == &rpmmi_Type)
9
10 PyObject * rpmmi_Wrap(PyTypeObject *subtype, rpmdbMatchIterator mi, PyObject *s);
11
12 #endif