mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
idc.py: Fixed RunTo() and GetExceptionQty()
This commit is contained in:
parent
9d3fb35f87
commit
cb57938dcc
@ -6615,7 +6615,7 @@ def RunTo(ea):
|
||||
|
||||
@return: success
|
||||
"""
|
||||
return idaapi.run_to()
|
||||
return idaapi.run_to(ea)
|
||||
|
||||
|
||||
def StepUntilRet():
|
||||
@ -6945,7 +6945,7 @@ def GetExceptionQty():
|
||||
"""
|
||||
Get number of defined exception codes
|
||||
"""
|
||||
return iddapi.get_exception_qty()
|
||||
return idaapi.get_exception_qty()
|
||||
|
||||
|
||||
def GetExceptionCode(idx):
|
||||
|
Loading…
Reference in New Issue
Block a user