ElfSymbol64.cs 267 B

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