def recursive_prefix_cursor():
"""
Recursive prefix under the user cursor.
"""
# get the function reference under the user cursor (if there is one)
target = get_cursor_func_ref()
if target == idaapi.BADADDR:
return
# execute the recursive prefix
recursive_prefix(target)
评论列表
文章目录