summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2022-07-19 18:27:50 -0400
committerGlenn Smith <glenn@vector35.com>2022-09-29 21:02:24 -0400
commit0725c6fbd58b3d40ffefdb319121a29ba4168517 (patch)
tree43321b54b45dd16154bc104886b5e3ef08017b75 /binaryninjacore.h
parent460656be13999759eb1eeb5bd9a868b34c0aea22 (diff)
Make DebugInfo::parse failable
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h2
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);