blob: 73e03a1b2521feac1cd89d7a19e5cb6e00e51d97 (
plain) (
tree)
|
|
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;
}
}
|