mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-23 10:35:10 +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;
|
|||
|
}
|
|||
|
}
|