mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:49:15 +00:00
14 lines
358 B
C#
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;
|
|
}
|
|
} |