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