mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
Enable ELF interpreter modification (without size restriction)
See: 'examples/python/changer_elf_interpreter.py' for usage Resolve: #86
This commit is contained in:
@@ -42,7 +42,8 @@ void init_ELF_DynamicEntryArray_class(py::module& m) {
|
||||
.def_property("array",
|
||||
static_cast<std::vector<uint64_t>& (DynamicEntryArray::*) (void)>(&DynamicEntryArray::array),
|
||||
static_cast<setter_t<const std::vector<uint64_t>&>>(&DynamicEntryArray::array),
|
||||
"Return the array")
|
||||
"Return the array",
|
||||
py::return_value_policy::reference)
|
||||
|
||||
.def("__eq__", &DynamicEntryArray::operator==)
|
||||
.def("__ne__", &DynamicEntryArray::operator!=)
|
||||
|
||||
Reference in New Issue
Block a user