summaryrefslogtreecommitdiff
path: root/pysoundtouch/src/soundtouchmodule.h
diff options
context:
space:
mode:
Diffstat (limited to 'pysoundtouch/src/soundtouchmodule.h')
-rw-r--r--pysoundtouch/src/soundtouchmodule.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/pysoundtouch/src/soundtouchmodule.h b/pysoundtouch/src/soundtouchmodule.h
new file mode 100644
index 0000000..6f533eb
--- /dev/null
+++ b/pysoundtouch/src/soundtouchmodule.h
@@ -0,0 +1,17 @@
+/*
+ * python interface to soundtouch (the open-source audio processing library)
+ * Expose BMP detection and Shifting to python
+ */
+
+#ifndef __SOUNDTOUCH_MODULE_H__
+#define __SOUNDTOUCH_MODULE_H__
+
+#include <Python.h>
+
+/* module accessible functions */
+extern "C" {
+ PyObject* py_soundtouch_new(PyObject* self, PyObject* args);
+ PyObject* py_bpmdetect_new(PyObject* self, PyObject* args);
+}
+
+#endif