DbgArgumentAdd
This function will add an argument to the specified address range.
bool DbgArgumentAdd(duint start, duint end);
参数
start
first address of the argument range.
end
last address of the argument range.
返回值
The function return TRUE if argument is successfully setted or FALSE otherwise.
示例
if(DbgArgumentAdd(0x00401000, 0x00401013)) GuiAddLogMessage("Argument successfully setted\r\n"); else GuiAddLogMessage("Argument couldn't be set\r\n");