diff options
Diffstat (limited to 'Ryujinx.Core/Loaders/ElfRel.cs')
| -rw-r--r-- | Ryujinx.Core/Loaders/ElfRel.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Ryujinx.Core/Loaders/ElfRel.cs b/Ryujinx.Core/Loaders/ElfRel.cs new file mode 100644 index 00000000..8db27452 --- /dev/null +++ b/Ryujinx.Core/Loaders/ElfRel.cs @@ -0,0 +1,19 @@ +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 |
