Version 5.3.2

This commit is contained in:
ufrisk
2023-02-17 21:47:53 +01:00
parent cc7fb70021
commit a1a517924c
9 changed files with 320 additions and 47 deletions

View File

@@ -94,6 +94,22 @@ public interface IVmmModule
* @return
*/
public IVmmPdb getPdb();
/**
* Retrieve debug directory information. The debug directory info requires
* that the module has been initialized with <b>isExtendedInfo</b> but may
* still fail if memory is unreadable - in which case null is returned.
* @return
*/
public Vmm_ModuleExDebugInfo getExDebugInfo();
/**
* Retrieve PE version info. The PE version info requires that the module
* has been initialized with <b>isExtendedInfo</b> but may still fail if
* memory is unreadable - in which case null is returned.
* @return
*/
public Vmm_ModuleExVersionInfo getExVersionInfo();