24 lines
359 B
C
24 lines
359 B
C
#ifndef H_RPMAL_PY
|
|
#define H_RPMAL_PY
|
|
|
|
#include "rpmal.h"
|
|
|
|
/** \ingroup py_c
|
|
* \file python/rpmal-py.h
|
|
*/
|
|
|
|
typedef struct rpmalObject_s {
|
|
PyObject_HEAD
|
|
PyObject *md_dict; /*!< to look like PyModuleObject */
|
|
rpmal al;
|
|
} rpmalObject;
|
|
|
|
/*@unchecked@*/
|
|
extern PyTypeObject rpmal_Type;
|
|
|
|
/*@null@*/
|
|
rpmalObject * rpmal_Wrap(rpmal al)
|
|
/*@*/;
|
|
|
|
#endif
|