summaryrefslogtreecommitdiff
path: root/snd/audio.c
diff options
context:
space:
mode:
Diffstat (limited to 'snd/audio.c')
-rw-r--r--snd/audio.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/snd/audio.c b/snd/audio.c
new file mode 100644
index 0000000..b1dcee0
--- /dev/null
+++ b/snd/audio.c
@@ -0,0 +1,50 @@
+#include "memory.h"
+#include "stdio.h"
+#include "snd.h"
+
+int audio_open()
+{
+ printf("audio_open not implemented\n");
+ return SND_SUCCESS;
+}
+
+
+int audio_close()
+{
+ printf("audio_close not implemented\n");
+ return SND_SUCCESS;
+}
+
+
+int audio_flush(snd_type snd)
+{
+ printf("audio_flush not implemented\n");
+ return SND_SUCCESS;
+}
+
+
+long audio_read()
+{
+ printf("audio_read not implemented\n");
+ return 0;
+}
+
+
+long audio_write()
+{
+ printf("audio_write not implemented\n");
+ return 0;
+}
+
+int audio_reset()
+{
+ printf("audio reset not implemented\n");
+ return SND_SUCCESS;
+}
+
+
+long audio_poll(snd_type snd)
+{
+ return 1000000;
+}
+