blob: 70417fd98236c69f3114511f5dd28a676bae53b2 (
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_RPMFTS_PY
#define H_RPMFTS_PY
/** \ingroup python
* \file python/rpmfts-py.h
*/
#include <fts.h>
typedef struct rpmftsObject_s {
PyObject_HEAD
FTS * ftsp;
FTSENT * fts;
} rpmftsObject;
/*@unchecked@*/
extern PyTypeObject rpmfts_Type;
rpmftsObject * rpmfts_Wrap(FTSENT * ftsp)
/*@*/;
#endif
|