951700fdd8
* Removed unused usings. * Added back using, now that it's used. * Removed extra whitespace.
14 lines
No EOL
379 B
C#
14 lines
No EOL
379 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;
|
|
}
|
|
} |