mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-31 14:27:10 +02:00
Move solution and projects to src
This commit is contained in:
parent
e210a51de6
commit
ea8eaea6c2
3466 changed files with 55 additions and 55 deletions
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];
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue