Basic impl of Error Applet (#1551)
This commit is contained in:
parent
f89b754abb
commit
4f65043ad7
8 changed files with 303 additions and 0 deletions
12
Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs
Normal file
12
Ryujinx.HLE/HOS/Applets/Error/ErrorCommonArg.cs
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue