summaryrefslogtreecommitdiff
path: root/python/spec-py.h
blob: 19b4df25ea1cb8e54b943f2615fc678d2b4edd82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef RPMPYTHON_SPEC
#define RPMPYTHON_SPEC

#include <rpm/rpmbuild.h>

/** \ingroup py_c
 * \file python/spec-py.h
 */

typedef struct specObject_s specObject;

extern PyTypeObject spec_Type;

/**
 */
rpmSpec specFromSpec(specObject * spec);

/**
 */
PyObject * spec_Wrap(rpmSpec spec);

#endif /* RPMPYTHON_SPEC */