ElfSymbol64.cs 328 B

1234567891011121314
  1. namespace Ryujinx.HLE.Loaders.Elf
  2. {
  3. struct ElfSymbol64
  4. {
  5. #pragma warning disable CS0649
  6. public uint NameOffset;
  7. public byte Info;
  8. public byte Other;
  9. public ushort SectionIndex;
  10. public ulong ValueAddress;
  11. public ulong Size;
  12. #pragma warning restore CS0649
  13. }
  14. }