hx_AddVarArg
Last updated
Was this helpful?
Add an argument of a variadic call.
It is impossible to detect the correct number of variadic arguments in all cases, so the decompiler may detect too few arguments. This command allows you to correct such cases by increasing the number of arguments.
It is available only when the cursor is located on a call to a variadic function (like printf). The decompiler automatically detects the argument locations, the user can only increase or decrease their number.
Hotkeys:
Numpad+ Add variadic argument
This command is useful if the decompiler determines the number of arguments incorrectly.
For example:
printf("This is a test call: %d\n");apparently lacks an argument. Pressing Numpad+ modifies it:
printf("This is a test call: %d\n", v1);Last updated
Was this helpful?
Was this helpful?
