ElfSymbol32.cs 267 B

123456789101112
  1. namespace Ryujinx.HLE.Loaders.Elf
  2. {
  3. struct ElfSymbol32
  4. {
  5. public uint NameOffset;
  6. public uint ValueAddress;
  7. public uint Size;
  8. public char Info;
  9. public char Other;
  10. public ushort SectionIndex;
  11. }
  12. }