|  | 
| "bool" | is_fixup_custom ("fixup_type_t" type) | 
|  | is_fixup_custom(type) -> bool Is fixup processed by processor module? 
 | 
|  | 
| "bool" | get_fixup ("fixup_data_t" fd, "ea_t" source) | 
|  | get_fixup(fd, source) -> bool Get fixup information. 
 | 
|  | 
| "bool" | exists_fixup ("ea_t" source) | 
|  | exists_fixup(source) -> bool Check that a fixup exists at the given address. 
 | 
|  | 
| "void" | set_fixup ("ea_t" source, "fixup_data_t" fd) | 
|  | set_fixup(source, fd) Set fixup information. 
 | 
|  | 
| "void" | del_fixup ("ea_t" source) | 
|  | del_fixup(source) Delete fixup information. 
 | 
|  | 
| "ea_t" | get_first_fixup_ea () | 
|  | get_first_fixup_ea() -> ea_t 
 | 
|  | 
| "ea_t" | get_next_fixup_ea ("ea_t" ea) | 
|  | get_next_fixup_ea(ea) -> ea_t Find next address with fixup information 
 | 
|  | 
| "ea_t" | get_prev_fixup_ea ("ea_t" ea) | 
|  | get_prev_fixup_ea(ea) -> ea_t Find previous address with fixup information 
 | 
|  | 
| "fixup_handler_t const *" | get_fixup_handler ("fixup_type_t" type) | 
|  | get_fixup_handler(type) -> fixup_handler_t const * Get handler of standard or custom fixup. 
 | 
|  | 
| "uval_t" | get_fixup_value ("ea_t" ea, "fixup_type_t" type) | 
|  | get_fixup_value(ea, type) -> uval_t Get the operand value. 
 | 
|  | 
| "bool" | patch_fixup_value ("ea_t" ea, "fixup_data_t" fd) | 
|  | patch_fixup_value(ea, fd) -> bool Patch the fixup bytes. 
 | 
|  | 
| "fixup_data_t const &" | get_fixup_desc ("ea_t" source, "fixup_data_t" fd) | 
|  | get_fixup_desc(source, fd) -> str Get FIXUP description comment. 
 | 
|  | 
| "int" | calc_fixup_size ("fixup_type_t" type) | 
|  | calc_fixup_size(type) -> int Calculate size of fixup in bytes (the number of bytes the fixup patches) 
 | 
|  | 
| "fixup_type_t" | find_custom_fixup ("char const *" name) | 
|  | find_custom_fixup(name) -> fixup_type_t Get id of a custom fixup handler. 
 | 
|  | 
| "bool" | get_fixups ("fixups_t *" out, "ea_t" ea, "asize_t" size) | 
|  | get_fixups(out, ea, size) -> bool 
 | 
|  | 
| "bool" | contains_fixups ("ea_t" ea, "asize_t" size) | 
|  | contains_fixups(ea, size) -> bool Does the specified address range contain any fixup information? 
 | 
|  | 
| "void" | gen_fix_fixups ("ea_t" _from, "ea_t" to, "asize_t" size) | 
|  | gen_fix_fixups(_from, to, size) Relocate the bytes with fixup information once more (generic function). 
 | 
|  | 
| "bool" | handle_fixups_in_macro ("refinfo_t" ri, "ea_t" ea, "fixup_type_t" other, "uint32" macro_reft_and_flags) | 
|  | handle_fixups_in_macro(ri, ea, other, macro_reft_and_flags) -> bool Handle two fixups in a macro. 
 | 
|  |