mirror of
https://github.com/holub/mame
synced 2025-05-17 03:10:43 +03:00
16 lines
262 B
C
16 lines
262 B
C
#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
|