summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/custom.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/custom.h')
-rw-r--r--src/emu/sound/custom.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/emu/sound/custom.h b/src/emu/sound/custom.h
new file mode 100644
index 00000000000..45422b3579d
--- /dev/null
+++ b/src/emu/sound/custom.h
@@ -0,0 +1,15 @@
+#ifndef CUSTOM_H
+#define CUSTOM_H
+
+struct CustomSound_interface
+{
+ void *(*start)(int clock, const struct CustomSound_interface *config);
+ void (*stop)(void *token);
+ void (*reset)(void *token);
+ void *extra_data;
+};
+
+void *custom_get_token(int index);
+
+
+#endif