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