diff options
author | jbj <devnull@localhost> | 2002-12-08 19:04:54 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-12-08 19:04:54 +0000 |
commit | 9e279581d8d0f513e07bb275972ed9cec3dc897c (patch) | |
tree | 2a5c1629f3be6bb9d8c57ff7200c65ed6596147a /python/rpmbc-py.h | |
parent | 3d1f33d2706b276ce82ecdef36eacf69343389e6 (diff) | |
download | rpm-9e279581d8d0f513e07bb275972ed9cec3dc897c.tar.gz rpm-9e279581d8d0f513e07bb275972ed9cec3dc897c.tar.bz2 rpm-9e279581d8d0f513e07bb275972ed9cec3dc897c.zip |
Stubs for beecrypt bindings.
CVS patchset: 5923
CVS date: 2002/12/08 19:04:54
Diffstat (limited to 'python/rpmbc-py.h')
-rw-r--r-- | python/rpmbc-py.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/python/rpmbc-py.h b/python/rpmbc-py.h new file mode 100644 index 000000000..54814c8c6 --- /dev/null +++ b/python/rpmbc-py.h @@ -0,0 +1,22 @@ +#ifndef H_RPMBC_PY +#define H_RPMBC_PY + +#include "rpmio_internal.h" + +/** \ingroup python + * \file python/rpmbc-py.h + */ + +/** + */ +typedef struct rpmbcObject_s { + PyObject_HEAD + mp32number n; +} rpmbcObject; + +/** + */ +/*@unchecked@*/ +extern PyTypeObject rpmbc_Type; + +#endif |