summaryrefslogtreecommitdiff
path: root/python/rpmal-py.h
blob: 0ed151b2566cd9ab5ad6f3ad5d1eb3f107d7f0c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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;

/*@unchecked@*/
extern PyTypeObject rpmal_Type;

rpmalObject * rpmal_Wrap(rpmal al)
	/*@*/;

#endif