aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/Loaders/ElfRel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Core/Loaders/ElfRel.cs')
-rw-r--r--Ryujinx.Core/Loaders/ElfRel.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Ryujinx.Core/Loaders/ElfRel.cs b/Ryujinx.Core/Loaders/ElfRel.cs
deleted file mode 100644
index 8db27452..00000000
--- a/Ryujinx.Core/Loaders/ElfRel.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-namespace Ryujinx.Core.Loaders
-{
- struct ElfRel
- {
- public long Offset { get; private set; }
- public long Addend { get; private set; }
-
- public ElfSym Symbol { get; private set; }
- public ElfRelType Type { get; private set; }
-
- public ElfRel(long Offset, long Addend, ElfSym Symbol, ElfRelType Type)
- {
- this.Offset = Offset;
- this.Addend = Addend;
- this.Symbol = Symbol;
- this.Type = Type;
- }
- }
-} \ No newline at end of file