Basic impl of Error Applet (#1551)

This commit is contained in:
Ac_K 2020-09-28 00:00:38 +02:00 committed by GitHub
parent 1b8f97b26c
commit 631f79008d
8 changed files with 303 additions and 0 deletions

View file

@ -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;
}
}