blob: 4263c84b8ae2a4e5a84ee0fdb9accba3c0d91463 (
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;
}
}
|