| 4993 | |
| 4994 | |
| 4995 | void BinaryView::AddUserSection(const string& name, uint64_t start, uint64_t length, BNSectionSemantics semantics, |
| 4996 | const string& type, uint64_t align, uint64_t entrySize, const string& linkedSection, const string& infoSection, |
| 4997 | uint64_t infoData) |
| 4998 | { |
| 4999 | BNAddUserSection(m_object, name.c_str(), start, length, semantics, type.c_str(), align, entrySize, |
| 5000 | linkedSection.c_str(), infoSection.c_str(), infoData); |
| 5001 | } |
| 5002 | |
| 5003 | |
| 5004 | void BinaryView::RemoveUserSection(const string& name) |
no test coverage detected