Add PE COFF symbol table

This commit is contained in:
Matt Nadareski
2022-11-05 00:17:26 -07:00
parent e103ddd216
commit aff3745859
2 changed files with 76 additions and 1 deletions

View File

@@ -36,6 +36,11 @@ namespace BurnOutSharp.Models.PortableExecutable
/// </summary>
public SectionHeader[] SectionTable { get; set; }
// TODO: Left off at "COFF Symbol Table"
/// <summary>
/// COFF symbol table
/// </summary>
public COFFSymbolTableEntry[] COFFSymbolTable { get; set; }
// TODO: Left off at https://learn.microsoft.com/en-us/windows/win32/debug/pe-format#section-number-values
}
}