mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 12:36:40 +00:00
14 lines
362 B
C#
14 lines
362 B
C#
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace Ryujinx.Core.OsHle.IpcServices.Aud
|
||
|
{
|
||
|
[StructLayout(LayoutKind.Sequential)]
|
||
|
struct AudioOutData
|
||
|
{
|
||
|
public long NextBufferPtr;
|
||
|
public long SampleBufferPtr;
|
||
|
public long SampleBufferCapacity;
|
||
|
public long SampleBufferSize;
|
||
|
public long SampleBufferInnerOffset;
|
||
|
}
|
||
|
}
|