File: rpmstrpool-py.h

package info (click to toggle)
rpm 6.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,580 kB
  • sloc: cpp: 53,319; ansic: 13,888; sh: 2,038; python: 1,175; makefile: 35; xml: 26
file content (13 lines) | stat: -rw-r--r-- 332 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef H_RPMSTRPOOL_PY
#define H_RPMSTRPOOL_PY

#include <rpm/rpmtypes.h>

typedef struct rpmstrPoolObject_s rpmstrPoolObject;
extern PyType_Spec rpmstrPool_Type_Spec;

PyObject * rpmstrPool_Wrap(PyTypeObject *subtype, rpmstrPool pool);

int poolFromPyObject(rpmmodule_state_t *modstate, PyObject *item, rpmstrPool *pool);

#endif