blob: c213e592618749a3c43b97e05ef47302555a51e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Applets
{
#pragma warning disable CS0649
[StructLayout(LayoutKind.Sequential, Pack=1)]
unsafe struct ControllerSupportResultInfo
{
public sbyte PlayerCount;
fixed byte _padding[3];
public uint SelectedId;
public uint Result;
}
#pragma warning restore CS0649
}
|