Add PE section table

This commit is contained in:
Matt Nadareski
2022-11-04 23:56:56 -07:00
parent 1308f3684b
commit 49a06f513b
2 changed files with 112 additions and 1 deletions

View File

@@ -29,6 +29,13 @@ namespace BurnOutSharp.Models.PortableExecutable
/// <summary>
/// Optional header
/// </summary>
public OptionalHeader Optionalheader { get; set; }
public OptionalHeader OptionalHeader { get; set; }
/// <summary>
/// Section table
/// </summary>
public SectionHeader[] SectionTable { get; set; }
// TODO: Left off at "COFF Relocations (Object Only)"
}
}