mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-07-06 19:19:04 +00:00
Move solution and projects to src
This commit is contained in:
26
src/Ryujinx.Audio/Renderer/Parameter/SinkOutStatus.cs
Normal file
26
src/Ryujinx.Audio/Renderer/Parameter/SinkOutStatus.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Ryujinx.Audio.Renderer.Parameter
|
||||
{
|
||||
/// <summary>
|
||||
/// Output information for a sink.
|
||||
/// </summary>
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
public struct SinkOutStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// Last written offset if the sink type is <see cref="Common.SinkType.CircularBuffer"/>.
|
||||
/// </summary>
|
||||
public uint LastWrittenOffset;
|
||||
|
||||
/// <summary>
|
||||
/// Reserved/padding.
|
||||
/// </summary>
|
||||
private uint _padding;
|
||||
|
||||
/// <summary>
|
||||
/// Reserved/padding.
|
||||
/// </summary>
|
||||
private unsafe fixed ulong _reserved[3];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user