mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-26 01:15:16 +00:00
second phase of supporting dt command
This commit is contained in:
parent
5d87365414
commit
6e1928645f
9 changed files with 144 additions and 6 deletions
|
|
@ -171,6 +171,26 @@ ScriptEngineSymbolInitLoadWrapper(PMODULE_SYMBOL_DETAIL BufferToStoreDetails,
|
|||
return ScriptEngineSymbolInitLoad(BufferToStoreDetails, StoredLength, DownloadIfAvailable, SymbolPath, IsSilentLoad);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief ScriptEngineShowDataBasedOnSymbolTypes wrapper
|
||||
*
|
||||
* @param TypeName
|
||||
* @param Address
|
||||
* @param BufferAddress
|
||||
* @param AdditionalParameters
|
||||
*
|
||||
* @return BOOLEAN
|
||||
*/
|
||||
BOOLEAN
|
||||
ScriptEngineShowDataBasedOnSymbolTypesWrapper(
|
||||
const char * TypeName,
|
||||
UINT64 Address,
|
||||
PVOID BufferAddress,
|
||||
char * AdditionalParameters)
|
||||
{
|
||||
return ScriptEngineShowDataBasedOnSymbolTypes(TypeName, Address, BufferAddress, AdditionalParameters);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief SymbolAbortLoading wrapper
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue