rpm  5.4.15
rpmfd-py.h
Go to the documentation of this file.
1 #ifndef H_RPMFD_PY
2 #define H_RPMFD_PY
3 
10 
13 typedef struct rpmfdObject_s {
14  PyObject_HEAD
15  PyObject *md_dict;
16 /*@relnull@*/
18 } rpmfdObject;
19 
22 /*@unchecked@*/
23 extern PyTypeObject rpmfd_Type;
24 #define rpmfdObject_Check(v) ((v)->ob_type == &rpmfd_Type)
25 
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29 
32 /*@null@*/
34  /*@*/;
35 
36 #ifdef __cplusplus
37 }
38 #endif
39 
42 #endif
PyTypeObject rpmfd_Type
Definition: rpmfd-py.c:281
rpmfdObject * rpmfd_Wrap(FD_t fd)
Definition: rpmfd-py.c:328
The FD_t File Handle data structure.
struct rpmfdObject_s rpmfdObject
PyObject_HEAD PyObject * md_dict
Definition: rpmfd-py.h:15