rpm  5.4.15
rpmmi-py.h
Go to the documentation of this file.
1 #ifndef H_RPMMI_PY
2 #define H_RPMMI_PY
3 
10 
13 typedef struct rpmmiObject_s rpmmiObject;
14 
17 struct rpmmiObject_s {
18  PyObject_HEAD
19  PyObject *md_dict;
21 } ;
22 
25 /*@unchecked@*/
26 extern PyTypeObject rpmmi_Type;
27 #define rpmmiObject_Check(v) ((v)->ob_type == &rpmmi_Type)
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
35 /*@null@*/
37  /*@*/;
38 
39 #ifdef __cplusplus
40 }
41 #endif
42 
45 #endif
rpmmi mi
Definition: rpmmi-py.h:20
Definition: rpmdb.c:436
PyTypeObject rpmmi_Type
Definition: rpmmi-py.c:214
PyObject_HEAD PyObject * md_dict
Definition: rpmmi-py.h:19
rpmmiObject * rpmmi_Wrap(rpmmi mi)
Definition: rpmmi-py.c:260