aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportResultInfo.cs
blob: 96cfd59039900bf9fd550b92dc7a7cd3800171cb (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 // Field is never assigned to
    [StructLayout(LayoutKind.Sequential, Pack = 1)]
    struct ControllerSupportResultInfo
    {
        public sbyte PlayerCount;
        private Array3<byte> _padding;
        public uint SelectedId;
        public uint Result;
    }
#pragma warning restore CS0649
}