From 4f65043ad77dcc37d9195b2a5e976d102421b82a Mon Sep 17 00:00:00 2001 From: Ac_K Date: Mon, 28 Sep 2020 00:00:38 +0200 Subject: Basic impl of Error Applet (#1551) --- Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs (limited to 'Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs') diff --git a/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs b/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs new file mode 100644 index 00000000..530a2ad8 --- /dev/null +++ b/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs @@ -0,0 +1,12 @@ +using System.Runtime.InteropServices; + +namespace Ryujinx.HLE.HOS.Applets.Error +{ + [StructLayout(LayoutKind.Sequential, Pack = 1)] + struct ErrorCommonArg + { + public uint Module; + public uint Description; + public uint ResultCode; + } +} \ No newline at end of file -- cgit v1.2.3