mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-10 00:21:08 +00:00
15 lines
359 B
C#
15 lines
359 B
C#
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;
|
|
}
|
|
}
|