mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 10:28:38 +00:00
9c8d48edff
Co-authored-by: riperiperi <rhy3756547@hotmail.com>
13 lines
267 B
C#
13 lines
267 B
C#
namespace Ryujinx.HLE.Loaders.Elf
|
|
{
|
|
struct ElfSymbol64
|
|
{
|
|
public uint NameOffset;
|
|
public char Info;
|
|
public char Other;
|
|
public ushort SectionIndex;
|
|
public ulong ValueAddress;
|
|
public ulong Size;
|
|
}
|
|
}
|