| 123456789101112131415 |
- using Ryujinx.Common.Memory;
- using System;
- 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;
- }
- }
|