2018-03-16 01:06:24 +01:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2018-07-15 04:57:41 +02:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Aud.AudioOut
|
2018-03-16 01:06:24 +01:00
|
|
|
{
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
|
|
struct AudioOutData
|
|
|
|
{
|
|
|
|
public long NextBufferPtr;
|
|
|
|
public long SampleBufferPtr;
|
|
|
|
public long SampleBufferCapacity;
|
|
|
|
public long SampleBufferSize;
|
|
|
|
public long SampleBufferInnerOffset;
|
|
|
|
}
|
|
|
|
}
|