diff options
| author | Rusty Wagner <rusty@vector35.com> | 2015-10-28 22:28:48 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2015-10-28 22:29:07 -0400 |
| commit | 72dba52eb3d90abae437e4658700167f47a05cf5 (patch) | |
| tree | f6d8f320b049113ee5e07c6a33ac31f5958576a6 /binaryninjaapi.h | |
| parent | 9fabf9157240d57470f9eb38448a329e5a31ec30 (diff) | |
Implement auto update functionality
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 46d675f2..fe4acd30 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -181,6 +181,14 @@ namespace BinaryNinja std::string GetVersionString(); uint32_t GetBuildId(); + bool AreAutoUpdatesEnabled(); + void SetAutoUpdatesEnabled(bool enabled); + uint64_t GetTimeSinceLastUpdateCheck(); + void UpdatesChecked(); + + std::string GetActiveUpdateChannel(); + void SetActiveUpdateChannel(const std::string& channel); + class DataBuffer { BNDataBuffer* m_buffer; |
