mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
idaapi.py: Added sel_array()
idaapi.py: Renamed *Array to *_array idautils.py: Renamed *Array to *_array idc.py: Renamed *Array to *_array
This commit is contained in:
+1
-1
@@ -341,7 +341,7 @@ def GetInputFileMD5():
|
||||
|
||||
@return: MD5 string or None on error
|
||||
"""
|
||||
ua=idaapi.ucharArray(16)
|
||||
ua=idaapi.uchar_array(16)
|
||||
if idaapi.retrieve_input_file_md5(ua.cast()):
|
||||
md5str=""
|
||||
for i in range(16):
|
||||
|
||||
+1
-1
@@ -1127,7 +1127,7 @@ def OpStroffEx(ea, n, strid, delta):
|
||||
between the structure base and the pointer into the structure.
|
||||
|
||||
"""
|
||||
path = idaapi.tidArray(1)
|
||||
path = idaapi.tid_array(1)
|
||||
path[0] = strid
|
||||
return idaapi.op_stroff(ea, n, path.cast(), 1, delta)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user