diff options
| author | Glenn Smith <glenn@vector35.com> | 2022-09-14 16:31:04 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2022-09-29 21:02:19 -0400 |
| commit | bac2b01e488e6a58dd3d16d6148dc5bea16be162 (patch) | |
| tree | 4f52bbc52b1b5aa37c76fe540330f11a8f43e855 /binaryninjaapi.h | |
| parent | 0d42e48c833106c7865ca5822986b787ba44f858 (diff) | |
Optimized api for getting the title of the last undo entry
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 5c04816b..964e0636 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1530,6 +1530,8 @@ namespace BinaryNinja { std::vector<UndoEntry> GetRedoEntries(); std::optional<UndoEntry> GetLastUndoEntry(); std::optional<UndoEntry> GetLastRedoEntry(); + std::optional<std::string> GetLastUndoEntryTitle(); + std::optional<std::string> GetLastRedoEntryTitle(); void ClearUndoEntries(); bool OpenProject(); |
