mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-30 19:36:26 +00:00
get structure size to show in the dt command
This commit is contained in:
parent
df442cb98a
commit
bdd6ce4dc8
8 changed files with 230 additions and 32 deletions
|
|
@ -122,6 +122,20 @@ ScriptEngineGetFieldOffsetWrapper(CHAR * TypeName, CHAR * FieldName, UINT32 * Fi
|
|||
return ScriptEngineGetFieldOffset(TypeName, FieldName, FieldOffset);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief ScriptEngineGetDataTypeSize wrapper
|
||||
*
|
||||
* @param TypeName
|
||||
* @param TypeSize
|
||||
*
|
||||
* @return BOOLEAN
|
||||
*/
|
||||
BOOLEAN
|
||||
ScriptEngineGetDataTypeSizeWrapper(CHAR * TypeName, UINT64 * TypeSize)
|
||||
{
|
||||
return ScriptEngineGetDataTypeSize(TypeName, TypeSize);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief ScriptEngineCreateSymbolTableForDisassembler wrapper
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue