blob: 931c5912abce2d9d9c392aaac7877d42dabde8f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Applets.Error
{
[StructLayout(LayoutKind.Sequential, Pack = 1)]
unsafe struct ApplicationErrorArg
{
public uint ErrorNumber;
public ulong LanguageCode;
public fixed byte MessageText[0x800];
public fixed byte DetailsText[0x800];
}
}
|