1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-17 21:30:06 -06:00
ryujinx/Ryujinx.Core/OsHle/Services/Aud/AudioOutData.cs

14 lines
359 B
C#
Raw Normal View History

using System.Runtime.InteropServices;
2018-03-20 15:00:00 -05:00
namespace Ryujinx.Core.OsHle.Services.Aud
{
[StructLayout(LayoutKind.Sequential)]
struct AudioOutData
{
public long NextBufferPtr;
public long SampleBufferPtr;
public long SampleBufferCapacity;
public long SampleBufferSize;
public long SampleBufferInnerOffset;
}
}