diff options
| author | Josh Ferrell <josh@vector35.com> | 2024-08-20 15:22:09 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2024-08-20 15:22:09 -0400 |
| commit | a48cc7e466cbbed8abf465d30fb03d867ce07185 (patch) | |
| tree | e08d7476c986c31e8d64a01ed3eb748635636c0e /binaryninjaapi.h | |
| parent | 46b26cf9f4a8eee8e94f86532220e61120c2a54d (diff) | |
Update progress functions to use BNProgressFunction typedef
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 3f0ec438..320a551f 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -16623,7 +16623,7 @@ namespace BinaryNinja { class CustomDebugInfoParser : public DebugInfoParser { static bool IsValidCallback(void* ctxt, BNBinaryView* view); - static bool ParseCallback(void* ctxt, BNDebugInfo* debugInfo, BNBinaryView* view, BNBinaryView* debugFile, bool (*progress)(void*, size_t, size_t), void* progressCtxt); + static bool ParseCallback(void* ctxt, BNDebugInfo* debugInfo, BNBinaryView* view, BNBinaryView* debugFile, BNProgressFunction progress, void* progressCtxt); BNDebugInfoParser* Register(const std::string& name); public: |
