upgrade rpm version to 4.14.1
[platform/upstream/rpm.git] / python / rpmstrpool-py.h
1 #ifndef H_RPMSTRPOOL_PY
2 #define H_RPMSTRPOOL_PY
3
4 #include <rpm/rpmtypes.h>
5
6 typedef struct rpmstrPoolObject_s rpmstrPoolObject;
7
8 extern PyTypeObject rpmstrPool_Type;
9
10 PyObject * rpmstrPool_Wrap(PyTypeObject *subtype, rpmstrPool pool);
11
12 int poolFromPyObject(PyObject *item, rpmstrPool *pool);
13
14 #endif