2020-01-12 06:06:26 -05:00
|
|
|
|
namespace Ryujinx.HLE.Loaders.Elf
|
|
|
|
|
{
|
|
|
|
|
struct ElfSymbol32
|
|
|
|
|
{
|
2020-04-20 17:59:59 -04:00
|
|
|
|
#pragma warning disable CS0649
|
2020-01-12 06:06:26 -05:00
|
|
|
|
public uint NameOffset;
|
|
|
|
|
public uint ValueAddress;
|
|
|
|
|
public uint Size;
|
2020-05-03 18:54:50 -04:00
|
|
|
|
public byte Info;
|
|
|
|
|
public byte Other;
|
2020-01-12 06:06:26 -05:00
|
|
|
|
public ushort SectionIndex;
|
2020-04-20 17:59:59 -04:00
|
|
|
|
#pragma warning restore CS0649
|
2020-01-12 06:06:26 -05:00
|
|
|
|
}
|
2021-09-14 19:24:49 -04:00
|
|
|
|
}
|