[wrap]
MAME source file: / src / emu / sound / custom.h [download] (view on mamedev.org)
#pragma once

#ifndef __CUSTOM_H__
#define __CUSTOM_H__

typedef struct _custom_sound_interface custom_sound_interface;
struct _custom_sound_interface
{
	void *(*start)(int clock, const custom_sound_interface *config);
	void (*stop)(void *token);
	void (*reset)(void *token);
	void *extra_data;
};

void *custom_get_token(int index);


#endif /* __CUSTOM_H__ */
  
2004-2008 MAWS all copyrights belong to their respective owners