aboutsummaryrefslogblamecommitdiff
path: root/src/Ryujinx.HLE/HOS/Applets/Error/ApplicationErrorArg.cs
blob: 0a20bee46d984bba5cd911692f9956c382fb7ae5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                            
                                     


                                                   
                              
     
                                  
                                         
     
 
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;
    }
}