blob: 689a54dec13c64a023ff85f36c1dfedcf0a862e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
}
|