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-04-03 02:10:02 +02:00
|
|
|
// (8.0.0+ version)
|
2020-08-23 22:54:11 +02:00
|
|
|
[StructLayout(LayoutKind.Sequential, Pack=1)]
|
|
|
|
unsafe struct ControllerSupportArgV7
|
2020-04-03 02:10:02 +02:00
|
|
|
{
|
|
|
|
public ControllerSupportArgHeader Header;
|
|
|
|
public fixed uint IdentificationColor[8];
|
|
|
|
public byte EnableExplainText;
|
|
|
|
public fixed byte ExplainText[8 * 0x81];
|
|
|
|
}
|
2020-05-10 16:02:41 +02:00
|
|
|
#pragma warning restore CS0649
|
2020-04-03 02:10:02 +02:00
|
|
|
}
|