|
| "bool" | create_switch_xrefs (*args) |
| | create_switch_xrefs(ea, si) -> bool This function creates xrefs from the indirect jump.
|
| |
| "cases_and_targets_t *" | calc_switch_cases (*args) |
| | calc_switch_cases(ea, si) -> cases_and_targets_t Get information about a switch's cases.
|
| |
| "bool" | create_switch_table (*args) |
| | create_switch_table(ea, si) -> bool Create switch table from the switch information
|
| |
| "char" | xrefchar (*args) |
| | xrefchar(xrtype) -> char Get character describing the xref type.
|
| |
| "bool" | add_cref (*args) |
| | add_cref(frm, to, type) -> bool Create a code cross-reference.
|
| |
| "bool" | del_cref (*args) |
| | del_cref(frm, to, expand) -> bool Delete a code cross-reference.
|
| |
| "bool" | add_dref (*args) |
| | add_dref(frm, to, type) -> bool Create a data cross-reference.
|
| |
| "void" | del_dref (*args) |
| | del_dref(frm, to) Delete a data cross-reference.
|
| |
| "ea_t" | get_first_dref_from (*args) |
| | get_first_dref_from(frm) -> ea_t Get first data referenced from the specified address.
|
| |
| "ea_t" | get_next_dref_from (*args) |
| | get_next_dref_from(frm, current) -> ea_t Get next data referenced from the specified address.
|
| |
| "ea_t" | get_first_dref_to (*args) |
| | get_first_dref_to(to) -> ea_t Get address of instruction/data referencing to the specified data.
|
| |
| "ea_t" | get_next_dref_to (*args) |
| | get_next_dref_to(to, current) -> ea_t Get address of instruction/data referencing to the specified data
|
| |
| "ea_t" | get_first_cref_from (*args) |
| | get_first_cref_from(frm) -> ea_t Get first instruction referenced from the specified instruction.
|
| |
| "ea_t" | get_next_cref_from (*args) |
| | get_next_cref_from(frm, current) -> ea_t Get next instruction referenced from the specified instruction.
|
| |
| "ea_t" | get_first_cref_to (*args) |
| | get_first_cref_to(to) -> ea_t Get first instruction referencing to the specified instruction.
|
| |
| "ea_t" | get_next_cref_to (*args) |
| | get_next_cref_to(to, current) -> ea_t Get next instruction referencing to the specified instruction.
|
| |
| "ea_t" | get_first_fcref_from (*args) |
| | get_first_fcref_from(frm) -> ea_t
|
| |
| "ea_t" | get_next_fcref_from (*args) |
| | get_next_fcref_from(frm, current) -> ea_t
|
| |
| "ea_t" | get_first_fcref_to (*args) |
| | get_first_fcref_to(to) -> ea_t
|
| |
| "ea_t" | get_next_fcref_to (*args) |
| | get_next_fcref_to(to, current) -> ea_t
|
| |
| "bool" | has_external_refs (*args) |
| | has_external_refs(pfn, ea) -> bool Does 'ea' have references from outside of 'pfn'?
|
| |
| "void" | delete_switch_table (*args) |
| | delete_switch_table(jump_ea, si)
|
| |