aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgV7.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgV7.cs')
-rw-r--r--Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgV7.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgV7.cs b/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgV7.cs
new file mode 100644
index 00000000..a01e7c04
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgV7.cs
@@ -0,0 +1,16 @@
+using System.Runtime.InteropServices;
+
+namespace Ryujinx.HLE.HOS.Applets
+{
+#pragma warning disable CS0649
+ // (8.0.0+ version)
+ [StructLayout(LayoutKind.Sequential, Pack=1)]
+ unsafe struct ControllerSupportArgV7
+ {
+ public ControllerSupportArgHeader Header;
+ public fixed uint IdentificationColor[8];
+ public byte EnableExplainText;
+ public fixed byte ExplainText[8 * 0x81];
+ }
+#pragma warning restore CS0649
+} \ No newline at end of file