diff options
| author | Brian Potchik <brian@vector35.com> | 2025-07-02 23:48:32 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-07-02 23:48:32 -0400 |
| commit | 246f1f72ad2418930ac8837f0788d09a2b24ee6b (patch) | |
| tree | e99fab87b8bec6f8e6f8b60f546c285d41a494c6 /binaryninjacore.h | |
| parent | 48e705fd2ea86f985483312fa8ac98d5c5300466 (diff) | |
Add outlining support for wmemcpy.
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index deca98e5..b2f02949 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -37,14 +37,14 @@ // Current ABI version for linking to the core. This is incremented any time // there are changes to the API that affect linking, including new functions, // new types, or modifications to existing functions or types. -#define BN_CURRENT_CORE_ABI_VERSION 115 +#define BN_CURRENT_CORE_ABI_VERSION 116 // Minimum ABI version that is supported for loading of plugins. Plugins that // are linked to an ABI version less than this will not be able to load and // will require rebuilding. The minimum version is increased when there are // incompatible changes that break binary compatibility, such as changes to // existing types or functions. -#define BN_MINIMUM_CORE_ABI_VERSION 115 +#define BN_MINIMUM_CORE_ABI_VERSION 116 #ifdef __GNUC__ #ifdef BINARYNINJACORE_LIBRARY @@ -3582,7 +3582,8 @@ extern "C" BuiltinMemset, BuiltinStrncpy, BuiltinStrcpy, - BuiltinWcscpy + BuiltinWcscpy, + BuiltinWmemcpy } BNBuiltinType; typedef struct BNSegmentInfo { @@ -4394,8 +4395,7 @@ extern "C" BINARYNINJACOREAPI void BNClearUserGlobalPointerValue(BNBinaryView* view); BINARYNINJACOREAPI void BNSetUserGlobalPointerValue(BNBinaryView* view, BNRegisterValueWithConfidence value); - BINARYNINJACOREAPI bool BNStringifyUnicodeData(BNBinaryView* data, BNArchitecture* arch, const BNDataBuffer* buffer, - bool allowShortStrings, char** string, BNStringType* type); + BINARYNINJACOREAPI bool BNStringifyUnicodeData(BNBinaryView* data, BNArchitecture* arch, const BNDataBuffer* buffer, bool nullTerminates, bool allowShortStrings, char** string, BNStringType* type); // Raw binary data view BINARYNINJACOREAPI BNBinaryView* BNCreateBinaryDataView(BNFileMetadata* file); |
