IDAPython 9.0
|
Functions that deal with the string list. While the kernel keeps the string list, it does not update it. The string list is not used by the kernel because keeping it up-to-date would slow down IDA without any benefit. If the string list is not cleared using clear_strlist(), the list will be saved to the database and restored on the next startup. The users of this list should call build_strlist() if they need an up-to-date version.
Classes | |
class | string_info_t |
class | strwinsetup_t |
Functions | |
'strwinsetup_t const *' | get_strlist_options () |
None | build_strlist () |
None | clear_strlist () |
'size_t' | get_strlist_qty () |
bool | get_strlist_item ('string_info_t' si, 'size_t' n) |
None build_strlist | ( | ) |
Rebuild the string list.
None clear_strlist | ( | ) |
Clear the string list.
bool get_strlist_item | ( | 'string_info_t' | si, |
'size_t' | n ) |
Get nth element of the string list (n=0..get_strlist_qty()-1)
'strwinsetup_t const *' get_strlist_options | ( | ) |
Get the static string list options.
'size_t' get_strlist_qty | ( | ) |
Get number of elements in the string list. The list will be loaded from the database (if saved) or built from scratch.