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

#include "rpmte.h"

/** \ingroup python
 * \file python/rpmte-py.h
 */

typedef struct rpmteObject_s {
    PyObject_HEAD
    rpmte	te;
} rpmteObject;

/*@unchecked@*/
extern PyTypeObject rpmte_Type;

rpmteObject * rpmte_Wrap(rpmte te)
	/*@*/;

#endif