Class to enumerate all function parents sorted by addresses.
Enumeration is started with first() or last(). The loop may continue until the next() or prev() function returns false. The parent functions are always sorted by their addresses. The tail chunk is locked during the iteration. Iterator for function parent referers using ea_t-based API.
Sample code:
for (
bool ok = fpi.first();
ok;
ok = fpi.next() )
msg("parent: %a\n", fpi.parent());
function_parent_iterator_t()
Definition funcs.hpp:1886
bool ok
Definition kernwin.hpp:7410