-
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 ? |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
Sorry for the delay in replying -- there's a new action on the latest dev called
Import Header File
that's also under theAnalysis
menu 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.