10 lines
248 B
C#
10 lines
248 B
C#
namespace MAME.Core.run_interface
|
|
{
|
|
public interface ISoundPlayer
|
|
{
|
|
void BufferWirte(int Off, byte[] Data);
|
|
void SetVolume(int Vol);
|
|
void GetCurrentPosition(out int play_position, out int write_position);
|
|
}
|
|
}
|