mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-30 13:20:46 -07:00
Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.HLE/HOS/Applets/Error/ApplicationErrorArg.cs
Normal file
14
src/Ryujinx.HLE/HOS/Applets/Error/ApplicationErrorArg.cs
Normal file
@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user