mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00
16 lines
403 B
C#
16 lines
403 B
C#
using Ryujinx.Common.Memory;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.HLE.HOS.Applets
|
|
{
|
|
#pragma warning disable CS0649
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
struct ControllerSupportResultInfo
|
|
{
|
|
public sbyte PlayerCount;
|
|
private Array3<byte> _padding;
|
|
public uint SelectedId;
|
|
public uint Result;
|
|
}
|
|
#pragma warning restore CS0649
|
|
} |