mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-27 01:45:26 +00:00
beautify dt command and add struct command
This commit is contained in:
parent
175f780d14
commit
2b16ed3171
16 changed files with 131 additions and 36 deletions
|
|
@ -176,6 +176,7 @@ ScriptEngineSymbolInitLoadWrapper(PMODULE_SYMBOL_DETAIL BufferToStoreDetails,
|
|||
*
|
||||
* @param TypeName
|
||||
* @param Address
|
||||
* @param IsStruct
|
||||
* @param BufferAddress
|
||||
* @param AdditionalParameters
|
||||
*
|
||||
|
|
@ -185,10 +186,11 @@ BOOLEAN
|
|||
ScriptEngineShowDataBasedOnSymbolTypesWrapper(
|
||||
const char * TypeName,
|
||||
UINT64 Address,
|
||||
BOOLEAN IsStruct,
|
||||
PVOID BufferAddress,
|
||||
const char * AdditionalParameters)
|
||||
{
|
||||
return ScriptEngineShowDataBasedOnSymbolTypes(TypeName, Address, BufferAddress, AdditionalParameters);
|
||||
return ScriptEngineShowDataBasedOnSymbolTypes(TypeName, Address, IsStruct, BufferAddress, AdditionalParameters);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue