mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-26 18:30:08 +02:00
13 lines
267 B
C#
13 lines
267 B
C#
namespace Ryujinx.HLE.Loaders.Elf
|
|
{
|
|
struct ElfSymbol32
|
|
{
|
|
public uint NameOffset;
|
|
public uint ValueAddress;
|
|
public uint Size;
|
|
public char Info;
|
|
public char Other;
|
|
public ushort SectionIndex;
|
|
}
|
|
}
|