|
Basicly I have an open source library with /include/*.h folder. And I want to load all types and enums in one go while automatically resolve the dependencies between them. Is there a way to do it with the new clang parser ? Or I am forced to add types one by one using the UI ? |
Answered by
psifertex
Nov 28, 2022
Replies: 1 comment 1 reply
|
Sorry for the delay in replying -- there's a new action on the latest dev called That said, there's also https://api.binary.ninja/binaryninja.typeparser-module.html?highlight=parse_type#binaryninja.typeparser.TypeParser.parse_types_from_source that will take multiple files. |
1 reply
Answer selected by
psifertex
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Sorry for the delay in replying -- there's a new action on the latest dev called
Import Header Filethat's also under theAnalysismenu that at least adds a UI for single files.That said, there's also https://api.binary.ninja/binaryninja.typeparser-module.html?highlight=parse_type#binaryninja.typeparser.TypeParser.parse_types_from_source that will take multiple files.