2021-11-01 15:38:13 -07:00
|
|
|
using Ryujinx.Common.Memory;
|
2020-08-23 13:54:11 -07:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2020-04-02 17:10:02 -07:00
|
|
|
namespace Ryujinx.HLE.HOS.Applets
|
|
|
|
{
|
2020-05-10 07:02:41 -07:00
|
|
|
#pragma warning disable CS0649
|
2021-11-01 15:38:13 -07:00
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
|
|
struct ControllerSupportResultInfo
|
2020-04-02 17:10:02 -07:00
|
|
|
{
|
|
|
|
public sbyte PlayerCount;
|
2021-11-01 15:38:13 -07:00
|
|
|
private Array3<byte> _padding;
|
2020-04-02 17:10:02 -07:00
|
|
|
public uint SelectedId;
|
|
|
|
public uint Result;
|
|
|
|
}
|
2020-05-10 07:02:41 -07:00
|
|
|
#pragma warning restore CS0649
|
2020-04-02 17:10:02 -07:00
|
|
|
}
|