mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-28 03:54:18 +01:00
idautils.py: Added notes about Functions()'s behaviour when a function has chunks in multiple segments
This commit is contained in:
parent
b5f3edf5fc
commit
700dcef6cd
@ -198,7 +198,8 @@ def Functions(start=idaapi.cvar.inf.minEA, end=idaapi.cvar.inf.maxEA):
|
||||
@return: list of heads between start and end
|
||||
|
||||
@note: The last function that starts before 'end' is included even
|
||||
if it extends beyond 'end'.
|
||||
if it extends beyond 'end'. Any function that has its chunks in
|
||||
multiple segments will be reported multiple times.
|
||||
"""
|
||||
func = idaapi.get_func(start)
|
||||
if not func:
|
||||
|
Loading…
Reference in New Issue
Block a user