mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 08:48:42 +00: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;
|
|||
|
}
|
|||
|
}
|