summaryrefslogtreecommitdiff
path: root/python/rpmal-py.h
blob: 810c5ed2e9a09918fa268c1c37bd462cc844b6f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef H_RPMAL_PY
#define H_RPMAL_PY

#include <rpm/rpmal.h>

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

typedef struct rpmalObject_s {
    PyObject_HEAD
    PyObject *md_dict;		/*!< to look like PyModuleObject */
    rpmal	al;
} rpmalObject;

extern PyTypeObject rpmal_Type;

rpmalObject * rpmal_Wrap(rpmal al);

#endif