summaryrefslogtreecommitdiff
path: root/snd/audiosgi.c
diff options
context:
space:
mode:
Diffstat (limited to 'snd/audiosgi.c')
-rw-r--r--snd/audiosgi.c47
1 files changed, 47 insertions, 0 deletions
diff --git a/snd/audiosgi.c b/snd/audiosgi.c
new file mode 100644
index 0000000..6e66d4f
--- /dev/null
+++ b/snd/audiosgi.c
@@ -0,0 +1,47 @@
+#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;
+}
+