9c8d48edff
Co-authored-by: riperiperi <rhy3756547@hotmail.com>
12 lines
267 B
C#
12 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;
|
|
}
|
|
}
|