| 4978 | |
| 4979 | |
| 4980 | void BinaryView::AddAutoSection(const string& name, uint64_t start, uint64_t length, BNSectionSemantics semantics, |
| 4981 | const string& type, uint64_t align, uint64_t entrySize, const string& linkedSection, const string& infoSection, |
| 4982 | uint64_t infoData) |
| 4983 | { |
| 4984 | BNAddAutoSection(m_object, name.c_str(), start, length, semantics, type.c_str(), align, entrySize, |
| 4985 | linkedSection.c_str(), infoSection.c_str(), infoData); |
| 4986 | } |
| 4987 | |
| 4988 | |
| 4989 | void BinaryView::RemoveAutoSection(const string& name) |
no test coverage detected