summaryrefslogtreecommitdiff
path: root/python/rpmfts-py.h
diff options
context:
space:
mode:
Diffstat (limited to 'python/rpmfts-py.h')
-rw-r--r--python/rpmfts-py.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/python/rpmfts-py.h b/python/rpmfts-py.h
deleted file mode 100644
index 9890d50d8..000000000
--- a/python/rpmfts-py.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef H_RPMFTS_PY
-#define H_RPMFTS_PY
-
-/** \ingroup py_c
- * \file python/rpmfts-py.h
- */
-
-#include "rpmio/fts.h"
-
-typedef struct rpmftsObject_s {
- PyObject_HEAD
- PyObject *md_dict; /*!< to look like PyModuleObject */
- PyObject *callbacks;
-
- const char ** roots;
- int options;
- int ignore;
-
- int (*compare) (const void *, const void *);
-
- FTS * ftsp;
- FTSENT * fts;
- int active;
-} rpmftsObject;
-
-extern PyTypeObject rpmfts_Type;
-
-#endif