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