2018-03-15 21:06:24 -03:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2018-06-10 21:46:42 -03:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Aud
|
2018-03-15 21:06:24 -03:00
|
|
|
{
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
struct AudioOutData
|
|
|
|
{
|
|
|
|
public long NextBufferPtr;
|
|
|
|
public long SampleBufferPtr;
|
|
|
|
public long SampleBufferCapacity;
|
|
|
|
public long SampleBufferSize;
|
|
|
|
public long SampleBufferInnerOffset;
|
|
|
|
}
|
|
|
|
}
|