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:
gergely.erdelyi
2008-08-31 17:58:56 +00:00
parent e3a0a26f16
commit 358d85ac46
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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
View File
@@ -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)