mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
e27524cca5
gdl.i: added FlowChart and BasicBlock classes (check examples / ex_gdl_qflow_chart) idc.py : fixed MakeName() and AnalyseArea() (they were not returning return values)
7 lines
182 B
Python
7 lines
182 B
Python
import idautils
|
|
|
|
s = Strings(False)
|
|
s.setup(strtypes=Strings.STR_UNICODE | Strings.STR_C)
|
|
for i in s:
|
|
print "%x: len=%d type=%d -> '%s'" % (i.ea, i.length, i.type, str(i))
|