0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs

15 lines
329 B
C#
Raw Normal View History

namespace Ryujinx.HLE.Loaders.Elf
{
struct ElfSymbol64
{
#pragma warning disable CS0649
public uint NameOffset;
public byte Info;
public byte Other;
public ushort SectionIndex;
public ulong ValueAddress;
public ulong Size;
#pragma warning restore CS0649
}
}