diff options
| author | Rusty Wagner <rusty@vector35.com> | 2015-02-21 20:15:09 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2015-02-21 20:15:09 -0500 |
| commit | e931fbb18ed367745411592e3c408c1a04155a57 (patch) | |
| tree | f6aa9c84b678e6d5ee20c19c968ab82d44f6a207 /binaryninjaapi.h | |
| parent | f3a02f93e175ac5c509aa6e135653a4f58af32ce (diff) | |
Handle sizing and complete event for disassembly view
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 21d46554..ce400e38 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -722,13 +722,12 @@ namespace BinaryNinja void StartLayout(); bool IsLayoutComplete(); void OnComplete(const std::function<void()>& func); + void ClearOnComplete(); std::vector<Ref<FunctionGraphBlock>> GetBlocks() const; - int GetLeftExtent() const; - int GetTopExtent() const; - int GetRightExtent() const; - int GetBottomExtent() const; + int GetWidth() const; + int GetHeight() const; std::vector<Ref<FunctionGraphBlock>> GetBlocksInRegion(int left, int top, int right, int bottom); }; } |
