summaryrefslogtreecommitdiff
path: root/examples/alsa_timed_audio/alsa.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/alsa_timed_audio/alsa.h')
-rw-r--r--examples/alsa_timed_audio/alsa.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/alsa_timed_audio/alsa.h b/examples/alsa_timed_audio/alsa.h
new file mode 100644
index 00000000..af2c00c9
--- /dev/null
+++ b/examples/alsa_timed_audio/alsa.h
@@ -0,0 +1,18 @@
+#ifndef ALSA_H
+#define ALSA_H
+
+#include <audio_output.h>
+
+struct isaudk_output *
+isaudk_get_default_alsa_output();
+
+struct isaudk_output *
+alsa_open_output( char *devname );
+
+struct isaudk_input *
+isaudk_get_default_alsa_input();
+
+struct isaudk_input *
+alsa_open_input( char *devname );
+
+#endif/*ALSA_H*/