diff options
| author | Peter LaFosse <peter@vector35.com> | 2023-02-08 08:56:03 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2023-02-08 11:52:37 -0500 |
| commit | 0b752f36c9d3b6bcb51a05fdcf5b38633d38bdbd (patch) | |
| tree | 74551bbf2d65f3d21a159ee006df7da45e93e398 /binaryninjacore.h | |
| parent | c2f7f8acadb4aec2c4df646528692fc9bfe1abd1 (diff) | |
Add boolean for Function.user_type to indicate if a user type has been set
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index 52614f41..6486f657 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -3763,6 +3763,7 @@ extern "C" BINARYNINJACOREAPI BNBoolWithConfidence BNCanFunctionReturn(BNFunction* func); BINARYNINJACOREAPI void BNSetFunctionAutoType(BNFunction* func, BNType* type); BINARYNINJACOREAPI void BNSetFunctionUserType(BNFunction* func, BNType* type); + BINARYNINJACOREAPI bool BNFunctionHasUserType(BNFunction* func); BINARYNINJACOREAPI char* BNGetFunctionComment(BNFunction* func); BINARYNINJACOREAPI char* BNGetCommentForAddress(BNFunction* func, uint64_t addr); |
