blob: 386b308b8e725bb8881fbd267e8d53ecd1161673 (
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
28
29
30
|
#ifndef H_RPMFI_PY
#define H_RPMFI_PY
#include "rpmfi.h"
/** \ingroup python
* \file python/rpmfi-py.h
*/
typedef struct rpmfiObject_s {
PyObject_HEAD
PyObject *md_dict; /*!< to look like PyModuleObject */
int active;
/*@null@*/
rpmfi fi;
} rpmfiObject;
/*@unchecked@*/
extern PyTypeObject rpmfi_Type;
rpmfi fiFromFi(rpmfiObject * fi)
/*@*/;
rpmfiObject * rpmfi_Wrap(rpmfi fi)
/*@*/;
rpmfiObject * hdr_fiFromHeader(PyObject * s, PyObject * args)
/*@*/;
#endif
|