How do I access the main/function specific flowgraph from the Python API? #2826
-
The title pretty much says it all. I have a exe I'm analyzing in Binary Ninja and I want to access (and ultimately modify) the displayed flowgraph edges (such as color) and add some annotations to the nodes. I went through the API documentation and I was unable to see this anywhere. Somewhat related to this, what's the difference between a CoreFlowGraph and a FlowGraph? thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey, sorry it took so long to get an answer to this. There's two answers to your question:
Generally speaking, if "Core" is in the name, it's probably not intended for public use. Those are usually used for internal implementation details. |
Beta Was this translation helpful? Give feedback.
Hey, sorry it took so long to get an answer to this.
There's two answers to your question:
Generally speaking, if "Core" is in the name, it's probably not intended for p…