def copy_function_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
functionPtrDef = copy_function(target)
copy_to_clip(functionPtrDef)
idaapi.msg(functionPtrDef + "\n")
评论列表
文章目录