diff options
Diffstat (limited to 'src/Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs')
| -rw-r--r-- | src/Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs new file mode 100644 index 00000000..2f84796b --- /dev/null +++ b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs @@ -0,0 +1,14 @@ +namespace Ryujinx.HLE.Loaders.Elf +{ + struct ElfSymbol32 + { +#pragma warning disable CS0649 + public uint NameOffset; + public uint ValueAddress; + public uint Size; + public byte Info; + public byte Other; + public ushort SectionIndex; +#pragma warning restore CS0649 + } +}
\ No newline at end of file |
