2020-08-23 20:54:11 +00:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
2020-04-03 00:10:02 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Applets
|
|
|
|
{
|
2020-05-10 14:02:41 +00:00
|
|
|
#pragma warning disable CS0649
|
2020-08-23 20:54:11 +00:00
|
|
|
[StructLayout(LayoutKind.Sequential, Pack=1)]
|
2020-04-03 00:10:02 +00:00
|
|
|
struct ControllerSupportArgHeader
|
|
|
|
{
|
|
|
|
public sbyte PlayerCountMin;
|
|
|
|
public sbyte PlayerCountMax;
|
|
|
|
public byte EnableTakeOverConnection;
|
|
|
|
public byte EnableLeftJustify;
|
|
|
|
public byte EnablePermitJoyDual;
|
|
|
|
public byte EnableSingleMode;
|
|
|
|
public byte EnableIdentificationColor;
|
|
|
|
}
|
2020-05-10 14:02:41 +00:00
|
|
|
#pragma warning restore CS0649
|
2020-04-03 00:10:02 +00:00
|
|
|
}
|