def add(start, **end):
"""Make a function at the address ``start``.
If the address ``end`` is specified, then stop processing the function at it's address.
"""
start = interface.address.inside(start)
end = end.get('end', idaapi.BADADDR)
ok = idaapi.add_func(start, end)
idaapi.autoWait()
return ok
评论列表
文章目录