diff options
| author | Josh F <josh@vector35.com> | 2022-07-21 16:30:49 -0400 |
|---|---|---|
| committer | Josh F <josh@vector35.com> | 2022-07-21 16:30:49 -0400 |
| commit | bd79cde9742b0fa7b5f38f7b820180f57ba2f55e (patch) | |
| tree | 49340453f264ce4baceb0b2d462381ecb1d0cc58 /binaryninjaapi.h | |
| parent | 2fbd5289025ef1263c40b72f68de1e7bbe7e5fc5 (diff) | |
Add FileMetadata::GetLast{Undo,Redo}Entry, add valid field to BNUndoEntry
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 1c33f70b..692c6901 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1079,6 +1079,8 @@ namespace BinaryNinja { std::vector<Ref<User>> GetUsers(); std::vector<UndoEntry> GetUndoEntries(); std::vector<UndoEntry> GetRedoEntries(); + std::optional<UndoEntry> GetLastUndoEntry(); + std::optional<UndoEntry> GetLastRedoEntry(); void ClearUndoEntries(); bool OpenProject(); |
