|
IDA SDK
|
Functions that deal with entry points. More...
Macros | |
| #define | AEF_UTF8 0x0 |
| the name is given in UTF-8 (default) | |
| #define | AEF_IDBENC 0x1 |
| the name is given in the IDB encoding; non-ASCII bytes will be decoded accordingly. More... | |
| #define | AEF_NODUMMY 0x2 |
| automatically prepend the name with '_' if it begins with a dummy suffix. More... | |
Functions | |
| idaman size_t ida_export | get_entry_qty (void) |
| Get number of entry points. | |
| idaman bool ida_export | add_entry (uval_t ord, ea_t ea, const char *name, bool makecode, int flags=AEF_UTF8) |
| Add an entry point to the list of entry points. More... | |
| idaman uval_t ida_export | get_entry_ordinal (size_t idx) |
| Get ordinal number of an entry point. More... | |
| idaman ea_t ida_export | get_entry (uval_t ord) |
| Get entry point address by its ordinal. More... | |
| idaman ssize_t ida_export | get_entry_name (qstring *buf, uval_t ord) |
| Get name of the entry point by its ordinal. More... | |
| idaman bool ida_export | rename_entry (uval_t ord, const char *name, int flags=AEF_UTF8) |
| Rename entry point. More... | |
| idaman bool ida_export | set_entry_forwarder (uval_t ord, const char *name, int flags=AEF_UTF8) |
| Set forwarder name for ordinal. More... | |
| idaman ssize_t ida_export | get_entry_forwarder (qstring *buf, uval_t ord) |
| Get forwarder name for the entry point by its ordinal. More... | |
Functions that deal with entry points.
Exported functions are considered as entry points as well.
IDA maintains list of entry points to the program. Each entry point:
| #define AEF_IDBENC 0x1 |
the name is given in the IDB encoding; non-ASCII bytes will be decoded accordingly.
Specifying AEF_IDBENC also implies AEF_NODUMMY
| #define AEF_NODUMMY 0x2 |
automatically prepend the name with '_' if it begins with a dummy suffix.
See also AEF_IDBENC
| idaman bool ida_export add_entry | ( | uval_t | ord, |
| ea_t | ea, | ||
| const char * | name, | ||
| bool | makecode, | ||
| int | flags = AEF_UTF8 |
||
| ) |
Add an entry point to the list of entry points.
| ord | ordinal number if ordinal number is equal to 'ea' then ordinal is not used |
| ea | linear address |
| name | name of entry point. If the specified location already has a name, the old name will be appended to the regular comment. If name == nullptr, then the old name will be retained. |
| makecode | should the kernel convert bytes at the entry point to instruction(s) |
| flags | See AEF_* |
| idaman uval_t ida_export get_entry_ordinal | ( | size_t | idx | ) |
Get ordinal number of an entry point.
| idx | internal number of entry point. Should be in the range 0..get_entry_qty()-1 |
| idaman ea_t ida_export get_entry | ( | uval_t | ord | ) |
Get entry point address by its ordinal.
| ord | ordinal number of entry point |
Get name of the entry point by its ordinal.
| buf | output buffer, may be nullptr |
| ord | ordinal number of entry point |
Rename entry point.
| ord | ordinal number of the entry point |
| name | name of entry point. If the specified location already has a name, the old name will be appended to a repeatable comment. |
| flags | See AEF_* |
Set forwarder name for ordinal.
| ord | ordinal number of the entry point |
| name | forwarder name for entry point. |
| flags | See AEF_* |