aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2020-09-28 00:00:38 +0200
committerGitHub <noreply@github.com>2020-09-28 00:00:38 +0200
commit4f65043ad77dcc37d9195b2a5e976d102421b82a (patch)
treead9ff1ed1a672263a419843371e732b01fa3a811 /Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs
parentf89b754abb3d721c09ba6ab00f7906d2d5ccb02b (diff)
Basic impl of Error Applet (#1551)
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs')
-rw-r--r--Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs12
1 files changed, 12 insertions, 0 deletions
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