CVS patchset: 6795
CVS date: 2003/04/30 17:46:38
This commit is contained in:
jbj 2003-04-30 17:46:38 +00:00
parent ebb6a798bc
commit e4aa414fe7
2 changed files with 2168 additions and 0 deletions

2145
python/rpmmpw-py.c Normal file

File diff suppressed because it is too large Load Diff

23
python/rpmmpw-py.h Normal file
View File

@ -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