1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-29 11:06:47 -06:00

14 lines
358 B
C#

using System.Runtime.InteropServices;
namespace Ryujinx.HLE.OsHle.Services.Aud
{
[StructLayout(LayoutKind.Sequential)]
struct AudioOutData
{
public long NextBufferPtr;
public long SampleBufferPtr;
public long SampleBufferCapacity;
public long SampleBufferSize;
public long SampleBufferInnerOffset;
}
}