From fc9dd8a34db419c8d2f654f390a48ad784d4591e Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 4 Dec 2022 23:17:34 -0800 Subject: [PATCH] Add base relocation table to passthrough --- BurnOutSharp.Wrappers/PortableExecutable.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BurnOutSharp.Wrappers/PortableExecutable.cs b/BurnOutSharp.Wrappers/PortableExecutable.cs index 22ade0c6..ed6be896 100644 --- a/BurnOutSharp.Wrappers/PortableExecutable.cs +++ b/BurnOutSharp.Wrappers/PortableExecutable.cs @@ -296,6 +296,9 @@ namespace BurnOutSharp.Wrappers #region Sections + /// + public Models.PortableExecutable.BaseRelocationBlock[] BaseRelocationTable => _executable.BaseRelocationTable; + /// public Models.PortableExecutable.DebugTable DebugTable => _executable.DebugTable;