diff options
| author | Glenn Smith <glenn@vector35.com> | 2022-07-19 18:27:50 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2022-09-29 21:02:24 -0400 |
| commit | 0725c6fbd58b3d40ffefdb319121a29ba4168517 (patch) | |
| tree | 43321b54b45dd16154bc104886b5e3ef08017b75 /binaryninjacore.h | |
| parent | 460656be13999759eb1eeb5bd9a868b34c0aea22 (diff) | |
Make DebugInfo::parse failable
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index daffe5bf..421a6d23 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -6276,7 +6276,7 @@ extern "C" BINARYNINJACOREAPI char* BNRustSimplifyStrToStr(const char* const); BINARYNINJACOREAPI BNDebugInfoParser* BNRegisterDebugInfoParser(const char* name, - bool (*isValid)(void*, BNBinaryView*), void (*parseInfo)(void*, BNDebugInfo*, BNBinaryView*), void* context); + bool (*isValid)(void*, BNBinaryView*), bool (*parseInfo)(void*, BNDebugInfo*, BNBinaryView*), void* context); BINARYNINJACOREAPI void BNUnregisterDebugInfoParser(const char* rawName); BINARYNINJACOREAPI BNDebugInfoParser* BNGetDebugInfoParserByName(const char* name); BINARYNINJACOREAPI BNDebugInfoParser** BNGetDebugInfoParsers(size_t* count); |
