add_entry(ord,
ea,
name,
makecode,
flags=0)
|
|
Add an entry point to the list of entry points.
- Parameters:
ord - ordinal number if ordinal number is equal to 'ea' then ordinal is
not used (C++: uval_t)
ea - linear address (C++: ea_t)
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 == NULL, then the old name will be retained. (C++: const
char *)
makecode - should the kernel convert bytes at the entry point to
instruction(s) (C++: bool)
flags - See AEF_* (C++: int)
- Returns: bool
- success (currently always true)
|