mirror of
https://github.com/x64dbg/x64dbg
synced 2026-08-11 18:23:06 -04:00
485 B
485 B
functionlist
List user-defined functions in reference view.
arguments
This command has no arguments.
result
$result will be set to the number of user-defined functions.
remarks
The contents of the reference view can be iterated in a script with the ref.addr expression function:
i = 0
loop:
addr = ref.addr(i)
log "reference {d:i} = {p:addr}"
i++
cmp i, ref.count()
jne loop