summaryrefslogtreecommitdiff
path: root/python/rpmal-py.h
blob: 0b91763b4066c3a08c5c3655d196c54a8f3eef31 (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 "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