blob: edc150829f72a30b0a35146fd3e5cb1666719c07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef H_RPMFI_PY
#define H_RPMFI_PY
#include "rpmfi.h"
/** \ingroup py_c
* \file python/rpmfi-py.h
*/
typedef struct rpmfiObject_s {
PyObject_HEAD
PyObject *md_dict; /*!< to look like PyModuleObject */
int active;
rpmfi fi;
} rpmfiObject;
extern PyTypeObject rpmfi_Type;
rpmfi fiFromFi(rpmfiObject * fi)
;
rpmfiObject * rpmfi_Wrap(rpmfi fi)
;
rpmfiObject * hdr_fiFromHeader(PyObject * s, PyObject * args, PyObject * kwds);
#endif
|