blob: a042739cbe60b35c2ba6f5c2ed04da63acbed7a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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;
}
}
|