You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sems/apps/ivr/IvrAudioMixIn.h

21 lines
319 B

#ifndef IvrAudioMixIn_h
#define IvrAudioMixIn_h
// Python stuff
#include <Python.h>
#include <structmember.h>
#include "AmAudioMixIn.h"
/** \brief python IVR wrapper for AmAudioMixIn */
typedef struct {
PyObject_HEAD
AmAudioMixIn* mix;
} IvrAudioMixIn;
extern PyTypeObject IvrAudioMixInType;
#endif