|
IDA C++ SDK 9.2
|
Functions | |
| idaman DEPRECATED ea_t ida_export | get_segm_para (const segment_t *s) |
| Get segment base paragraph. | |
| idaman ea_t ida_export | get_segment_para (ea_t ea) |
| Get segment base paragraph by address. | |
| idaman DEPRECATED ea_t ida_export | get_segm_base (const segment_t *s) |
| Get segment base linear address. | |
| idaman ea_t ida_export | get_segment_base (ea_t ea) |
| Get segment base linear address by address. | |
| idaman DEPRECATED bool ida_export | set_segm_addressing (segment_t *s, size_t bitness) |
| Change segment addressing mode (16, 32, 64 bits). | |
| idaman bool ida_export | set_segment_addressing (ea_t ea, size_t bitness) |
| Change segment addressing mode (16, 32, 64 bits) by address. | |
| idaman bool ida_export | is_same_segment (ea_t ea1, ea_t ea2) |
| Check two addresses belong to one segment. | |
Get segment base paragraph.
| s | pointer to segment |
Get segment base paragraph by address.
Segment base paragraph may be converted to segment base linear address using to_ea() function.
| ea | any linear address within the segment |
Get segment base linear address.
| s | pointer to segment |
Get segment base linear address by address.
Segment base linear address is used to calculate virtual addresses. The virtual address of the first byte of the segment will be (start address of segment - segment base linear address)
| ea | any linear address within the segment |
Change segment addressing mode (16, 32, 64 bits).
You must use this function to change segment addressing, never change the 'bitness' field directly. This function will delete all instructions, comments and names in the segment
| s | pointer to segment |
| bitness | new addressing mode of segment
|
Change segment addressing mode (16, 32, 64 bits) by address.
You must use this function to change segment addressing, never change the 'bitness' field directly. This function will delete all instructions, comments and names in the segment
| ea | any address within the segment |
| bitness | new addressing mode of segment
|