Add initial PE import table parsing

This commit is contained in:
Matt Nadareski
2022-11-10 11:31:06 -08:00
parent 98ddc65fa2
commit c77c095893
3 changed files with 361 additions and 12 deletions

View File

@@ -39,10 +39,15 @@ namespace BurnOutSharp.Models.PortableExecutable
/// </summary>
public uint NameRVA;
/// <summary>
/// ASCII string that contains the name of the DLL.
/// </summary>
public string Name;
/// <summary>
/// The RVA of the import address table. The contents of this table are identical
/// to the contents of the import lookup table until the image is bound.
/// </summary>
public uint ImportAddressTableRVAThunkTable;
public uint ImportAddressTableRVA;
}
}