2020-08-23 22:54:11 +02:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2020-04-03 02:10:02 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Applets
|
|
|
|
{
|
2020-05-10 16:02:41 +02:00
|
|
|
#pragma warning disable CS0649
|
2020-08-23 22:54:11 +02:00
|
|
|
[StructLayout(LayoutKind.Sequential, Pack=1)]
|
2020-04-03 02:10:02 +02:00
|
|
|
unsafe struct ControllerSupportResultInfo
|
|
|
|
{
|
|
|
|
public sbyte PlayerCount;
|
|
|
|
fixed byte _padding[3];
|
|
|
|
public uint SelectedId;
|
|
|
|
public uint Result;
|
|
|
|
}
|
2020-05-10 16:02:41 +02:00
|
|
|
#pragma warning restore CS0649
|
2020-04-03 02:10:02 +02:00
|
|
|
}
|