| 5040 | |
| 5041 | |
| 5042 | Ref<Section> BinaryView::GetSectionByName(const string& name) |
| 5043 | { |
| 5044 | BNSection* section = BNGetSectionByName(m_object, name.c_str()); |
| 5045 | if (section) |
| 5046 | return new Section(section); |
| 5047 | return nullptr; |
| 5048 | } |
| 5049 | |
| 5050 | |
| 5051 | vector<string> BinaryView::GetUniqueSectionNames(const vector<string>& names) |
no test coverage detected