mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 21:06:39 +00:00
4c2ab880ef
* Ryujinx.Audio: Remove BOM from files * misc: Relicense Ryujinx.Audio under the terms of the MIT license With the approvals of all the Ryujinx.Audio contributors, this commit changes Ryujinx.Audio license from LGPLv3 to MIT.
13 lines
350 B
C#
13 lines
350 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.Audio.Renderer.Common
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
public struct AuxiliaryBufferAddresses
|
|
{
|
|
public ulong SendBufferInfo;
|
|
public ulong SendBufferInfoBase;
|
|
public ulong ReturnBufferInfo;
|
|
public ulong ReturnBufferInfoBase;
|
|
}
|
|
}
|