aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs')
-rw-r--r--src/Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs
new file mode 100644
index 00000000..665e65b0
--- /dev/null
+++ b/src/Ryujinx.HLE/Loaders/Elf/ElfSymbol64.cs
@@ -0,0 +1,14 @@
+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
+ }
+} \ No newline at end of file