diff options
| author | Glenn Smith <glenn@vector35.com> | 2022-12-13 23:22:55 -0500 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2023-01-03 19:21:04 -0500 |
| commit | 32e2ea658cd7e0966baea435fa5d46df8ed84a3b (patch) | |
| tree | 73b64f85d04e5610c4c87d74fa070106fafc2d23 /binaryninjaapi.h | |
| parent | 41c6935322289be0798ba3e767cfb3ab8a3ec79b (diff) | |
Move this api for consistency
Sorry if you were using it (99.99% chance you weren't)
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 6098510d..5027d283 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1558,6 +1558,7 @@ namespace BinaryNinja { std::vector<UndoEntry> GetUndoEntries(const std::function<bool(size_t, size_t)>& progress); Ref<KeyValueStore> ReadData(); Ref<KeyValueStore> ReadData(const std::function<bool(size_t, size_t)>& progress); + bool StoreData(const Ref<KeyValueStore>& data, const std::function<bool(size_t, size_t)>& progress); bool HasAncestor(Ref<Snapshot> other); }; @@ -1579,7 +1580,6 @@ namespace BinaryNinja { Ref<Snapshot> GetCurrentSnapshot(); int64_t WriteSnapshotData(std::vector<int64_t> parents, Ref<BinaryView> file, const std::string& name, const Ref<KeyValueStore>& data, bool autoSave, const std::function<bool(size_t, size_t)>& progress); - bool StoreDataForSnapshot(int64_t id, const Ref<KeyValueStore>& data, const std::function<bool(size_t, size_t)>& progress); void TrimSnapshot(int64_t id); void RemoveSnapshot(int64_t id); |
