diff options
| author | Josh Ferrell <josh@vector35.com> | 2024-08-21 15:02:28 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2024-08-21 15:02:28 -0400 |
| commit | 2aecafe146f0048d5125df9190a5a3d8da1bdb6d (patch) | |
| tree | cf2b8ef845e6b9e2f3733759f112e32dfa170432 /binaryninjaapi.h | |
| parent | ab4b7edfa94b4025345f4f1100a47f53b77b0aee (diff) | |
Fix progress function types in binaryninjaapi.h
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 320a551f..70d40b47 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -13495,9 +13495,9 @@ namespace BinaryNinja { BNUpdateResult UpdateToVersion(const std::string& version); BNUpdateResult UpdateToVersion( - const std::string& version, const std::function<bool(uint64_t progress, uint64_t total)>& progress); + const std::string& version, const std::function<bool(size_t progress, size_t total)>& progress); BNUpdateResult UpdateToLatestVersion(); - BNUpdateResult UpdateToLatestVersion(const std::function<bool(uint64_t progress, uint64_t total)>& progress); + BNUpdateResult UpdateToLatestVersion(const std::function<bool(size_t progress, size_t total)>& progress); }; /*! UpdateVersion documentation |
