legacy/libburn/branches/python/libburn/src/source.h

19 lines
348 B
C

#ifndef PYBURN_SOURCE_H
#define PYBURN_SOURCE_H
#include "Python.h"
#include "libburn/libburn.h"
typedef struct {
PyObject_HEAD
struct burn_source *source;
} Source;
extern PyTypeObject SourceType;
void Source_Free(Source* self);
int Source_Create(Source* self, PyObject* args, PyObject* kwargs);
int Source_Setup_Types(void);
#endif