blob: 50253866bf5b218ab4ec6a2a5490c3d8af55d3d5 (
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
31
32
33
34
35
36
37
38
|
#ifndef H_RPMRC_PY
#define H_RPMRC_PY
/** \ingroup python
* \file python/rpmrc-py.h
*/
/** \ingroup python
*/
typedef struct rpmrcObject_s rpmrcObject;
/** \ingroup python
*/
struct rpmrcObject_s {
#if Py_TPFLAGS_HAVE_ITER /* XXX backport to python-1.5.2 */
PyDictObject dict;
int state;
#else
PyObject_HEAD
#endif
} ;
/*@unchecked@*/
extern PyTypeObject rpmrc_Type;
PyObject * rpmrc_AddMacro(PyObject * self, PyObject * args)
/*@globals rpmGlobalMacroContext, _Py_NoneStruct @*/
/*@modifies rpmGlobalMacroContext, _Py_NoneStruct @*/;
PyObject * rpmrc_DelMacro(PyObject * self, PyObject * args)
/*@globals rpmGlobalMacroContext, _Py_NoneStruct @*/
/*@modifies rpmGlobalMacroContext, _Py_NoneStruct @*/;
#if Py_TPFLAGS_HAVE_ITER /* XXX backport to python-1.5.2 */
PyObject * rpmrc_Create(PyObject * self, PyObject * args, PyObject * kwds)
/*@*/;
#endif
#endif
|