From 9c570077a562b4c45e80e6d0cf32f00909e8ebd1 Mon Sep 17 00:00:00 2001 From: Stephen Tong Date: Thu, 23 May 2019 18:45:59 -0400 Subject: Redo/Undo support for user-defined xrefs --- python/function.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python') diff --git a/python/function.py b/python/function.py index 1aea500d..36d47791 100644 --- a/python/function.py +++ b/python/function.py @@ -1296,6 +1296,9 @@ class Function(object): def set_user_xref(self, addr, target): core.BNSetUserXref(self.handle, addr, target) + def remove_user_xref(self, addr, target): + core.BNRemoveUserXref(self.handle, addr, target) + def get_low_level_il_at(self, addr, arch=None): """ ``get_low_level_il_at`` gets the LowLevelILInstruction corresponding to the given virtual address -- cgit v1.3.1