summaryrefslogtreecommitdiff
path: root/python/rpmrc-py.h
blob: bab51519dd544300bf5ec3613abcf73152c71e6a (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
#ifndef H_RPMRC_PY
#define H_RPMRC_PY

/** \ingroup py_c
 * \file python/rpmrc-py.h
 */

/** \ingroup py_c
 */
typedef struct rpmrcObject_s rpmrcObject;

/** \ingroup py_c
 */
struct rpmrcObject_s {
#if Py_TPFLAGS_HAVE_ITER	/* XXX backport to python-1.5.2 */
    PyDictObject dict;
#else
    PyObject_HEAD
#endif
    PyObject *md_dict;		/*!< to look like PyModuleObject */
} ;

extern PyTypeObject rpmrc_Type;

PyObject * rpmrc_AddMacro(PyObject * self, PyObject * args, PyObject * kwds);
PyObject * rpmrc_DelMacro(PyObject * self, PyObject * args, PyObject * kwds);

#if Py_TPFLAGS_HAVE_ITER	/* XXX backport to python-1.5.2 */
PyObject * rpmrc_Create(PyObject * self, PyObject * args, PyObject * kwds);
#endif

#endif