summaryrefslogtreecommitdiff
path: root/python/rpmfd-py.h
blob: eed1dccc4a3a30aafc00c362f506ccd3ba81e851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef H_RPMFD_PY
#define H_RPMFD_PY

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

typedef struct rpmfdObject_s {
    PyObject_HEAD
    FD_t	fd;
} rpmfdObject;

extern PyTypeObject rpmfd_Type;

rpmfdObject * rpmfd_Wrap(FD_t fd);

#endif