#ifndef RPMPYTHON_SPEC #define RPMPYTHON_SPEC #include /** \ingroup py_c * \file python/spec-py.h */ typedef struct specObject_s { PyObject_HEAD /*type specific fields */ Spec spec; } specObject; extern PyTypeObject spec_Type; /** */ Spec specFromSpec(specObject * spec); /** */ specObject * spec_Wrap(Spec spec); #endif /* RPMPYTHON_SPEC */