blob: 9ba9354147d638fcfde2170777b98a5fef9081e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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;
}
}
|