rpm
5.2.1
|
00001 #ifndef H_SPEC_PY 00002 #define H_SPEC_PY 00003 00004 #include <rpmbuild.h> 00005 00012 typedef struct specObject_s { 00013 PyObject_HEAD 00014 /*type specific fields */ 00015 /*@null@*/ 00016 Spec spec; 00017 } specObject; 00018 00021 /*@unchecked@*/ 00022 extern PyTypeObject spec_Type; 00023 00024 #ifdef __cplusplus 00025 extern "C" { 00026 #endif 00027 00030 /*@null@*/ 00031 Spec specFromSpec(specObject * spec) 00032 /*@*/; 00033 00036 /*@null@*/ 00037 specObject * spec_Wrap(Spec spec) 00038 /*@*/; 00039 00040 #ifdef __cplusplus 00041 } 00042 #endif 00043 00044 #endif /* H_SPEC_PY */