summaryrefslogtreecommitdiff
path: root/python/spec-py.h
blob: 7e6a04494c08bb968e83f5e266aa74b1720dad0a (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);

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

#endif /* RPMPYTHON_SPEC */