Reimplement rpmal by using hashes and cleaning up the color handling
[platform/upstream/rpm.git] / python / rpmal-py.h
1 #ifndef H_RPMAL_PY
2 #define H_RPMAL_PY
3
4 #include <rpm/rpmal.h>
5
6 /** \ingroup py_c
7  * \file python/rpmal-py.h
8  */
9
10 typedef struct rpmalObject_s {
11     PyObject_HEAD
12     PyObject *md_dict;          /*!< to look like PyModuleObject */
13     rpmal       al;
14 } rpmalObject;
15
16 extern PyTypeObject rpmal_Type;
17
18 rpmalObject * rpmal_Wrap(rpmal al);
19
20 #endif