Back to X64dbg

DbgArgumentAdd

docs/developers/functions/debug/DbgArgumentAdd.md

2026.04.20602 B
Original Source

DbgArgumentAdd

This function will add an argument to the specified address range.

c++
bool DbgArgumentAdd(duint start, duint end);

Parameters

start first address of the argument range.

end last address of the argument range.

Return Value

The function return TRUE if argument is successfully setted or FALSE otherwise.

Example

c++
if(DbgArgumentAdd(0x00401000, 0x00401013))
  GuiAddLogMessage("Argument successfully setted\r\n");
else
  GuiAddLogMessage("Argument couldn't be set\r\n");
  • DbgArgumentDel
  • DbgArgumentGet
  • DbgArgumentOverlaps