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.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/emu/sound/custom.h b/src/emu/sound/custom.h
deleted file mode 100644
index 78dcacf553f..00000000000
--- a/src/emu/sound/custom.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#pragma once
-
-#ifndef __CUSTOM_H__
-#define __CUSTOM_H__
-
-typedef struct _custom_sound_interface custom_sound_interface;
-struct _custom_sound_interface
-{
- void *(*start)(const device_config *device, int clock, const custom_sound_interface *config);
- void (*stop)(const device_config *device, void *token);
- void (*reset)(const device_config *device, void *token);
- void *extra_data;
-};
-
-void *custom_get_token(int index);
-
-#define CUSTOM_START(name) void *name(const device_config *device, int clock, const custom_sound_interface *config)
-#define CUSTOM_STOP(name) void name(const device_config *device, void *token)
-#define CUSTOM_RESET(name) void name(const device_config *device, void *token)
-
-SND_GET_INFO( custom );
-#define SOUND_CUSTOM SND_GET_INFO_NAME( custom )
-
-#endif /* __CUSTOM_H__ */