parent
ebb6a798bc
commit
e4aa414fe7
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,23 @@
|
||||||
|
#ifndef H_RPMBC_PY
|
||||||
|
#define H_RPMBC_PY
|
||||||
|
|
||||||
|
#include "rpmio_internal.h"
|
||||||
|
|
||||||
|
/** \ingroup py_c
|
||||||
|
* \file python/rpmbc-py.h
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
*/
|
||||||
|
typedef struct rpmbcObject_s {
|
||||||
|
PyObject_HEAD
|
||||||
|
PyObject *md_dict; /*!< to look like PyModuleObject */
|
||||||
|
mpnumber n;
|
||||||
|
} rpmbcObject;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*/
|
||||||
|
/*@unchecked@*/
|
||||||
|
extern PyTypeObject rpmbc_Type;
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue