diff options
| author | Rusty Wagner <rusty@vector35.com> | 2018-03-07 18:10:55 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2018-03-23 17:10:06 -0400 |
| commit | 4563e6343c47722cb2b026b5fe8303125c97020c (patch) | |
| tree | 9855e97a3572c41af9f07f27e6b12eb1f117bf5d /functiongraph.cpp | |
| parent | c183be59f14f6a672bc3eb3cab82851c43bec55a (diff) | |
Add APIs for skipping analysis of functions that are too large, and overriding this behavior
Diffstat (limited to 'functiongraph.cpp')
| -rw-r--r-- | functiongraph.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/functiongraph.cpp b/functiongraph.cpp index 77754913..a743254e 100644 --- a/functiongraph.cpp +++ b/functiongraph.cpp @@ -131,6 +131,12 @@ vector<Ref<FunctionGraphBlock>> FunctionGraph::GetBlocks() } +bool FunctionGraph::HasBlocks() const +{ + return BNFunctionGraphHasBlocks(m_graph); +} + + int FunctionGraph::GetWidth() const { return BNGetFunctionGraphWidth(m_graph); |
