2018-03-16 01:06:24 +01:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.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;
|
|
|
|
}
|
|
|
|
}
|