mirror of
https://git.ryujinx.app/archive/ryujinx-mirror.git
synced 2025-10-05 02:12:59 +00:00
14 lines
No EOL
359 B
C#
14 lines
No EOL
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;
|
|
}
|
|
} |