mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 18:16:55 +01:00
Fixed missing reference to idaapi module on two usages of E_PREV and E_NEXT
This commit is contained in:
parent
08f81d8b96
commit
2a77375c0e
@ -1991,7 +1991,7 @@ def LineA(ea, num):
|
|||||||
|
|
||||||
@return: anterior line string
|
@return: anterior line string
|
||||||
"""
|
"""
|
||||||
return idaapi.ExtraGet(ea, E_PREV + num)
|
return idaapi.ExtraGet(ea, idaapi.E_PREV + num)
|
||||||
|
|
||||||
|
|
||||||
def LineB(ea, num):
|
def LineB(ea, num):
|
||||||
@ -2003,7 +2003,7 @@ def LineB(ea, num):
|
|||||||
|
|
||||||
@return: posterior line string
|
@return: posterior line string
|
||||||
"""
|
"""
|
||||||
return idaapi.ExtraGet(ea, E_NEXT + num)
|
return idaapi.ExtraGet(ea, idaapi.E_NEXT + num)
|
||||||
|
|
||||||
|
|
||||||
def GetCommentEx(ea, repeatable):
|
def GetCommentEx(ea, repeatable):
|
||||||
|
Loading…
Reference in New Issue
Block a user