1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-21 14:33:30 +01:00
Ryujinx/Ryujinx.Core/OsHle/Services/Aud/AudioOutData.cs
2018-03-20 17:00:00 -03:00

14 lines
359 B
C#

using System.Runtime.InteropServices;
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;
}
}