mirror of
https://github.com/cemu-project/idapython.git
synced 2025-02-11 07:38:53 +01:00
![elias.bachaalany](/assets/img/avatar_default.png)
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))
|