rpm
5.2.1
|
00001 #ifndef H_RPMFTS_PY 00002 #define H_RPMFTS_PY 00003 00008 #include <fts.h> 00009 00012 00015 typedef struct rpmftsObject_s { 00016 PyObject_HEAD 00017 PyObject *md_dict; 00018 PyObject *callbacks; 00019 00020 /*@null@*/ 00021 const char ** roots; 00022 int options; 00023 int ignore; 00024 00025 /*@null@*/ 00026 int (*compare) (const void *, const void *); 00027 00028 /*@null@*/ 00029 FTS * ftsp; 00030 /*@null@*/ 00031 FTSENT * fts; 00032 int active; 00033 } rpmftsObject; 00034 00037 /*@unchecked@*/ 00038 extern PyTypeObject rpmfts_Type; 00039 00042 #endif