|
37 | 37 | // Current ABI version for linking to the core. This is incremented any time |
38 | 38 | // there are changes to the API that affect linking, including new functions, |
39 | 39 | // new types, or modifications to existing functions or types. |
40 | | -#define BN_CURRENT_CORE_ABI_VERSION 93 |
| 40 | +#define BN_CURRENT_CORE_ABI_VERSION 94 |
41 | 41 |
|
42 | 42 | // Minimum ABI version that is supported for loading of plugins. Plugins that |
43 | 43 | // are linked to an ABI version less than this will not be able to load and |
44 | 44 | // will require rebuilding. The minimum version is increased when there are |
45 | 45 | // incompatible changes that break binary compatibility, such as changes to |
46 | 46 | // existing types or functions. |
47 | | -#define BN_MINIMUM_CORE_ABI_VERSION 92 |
| 47 | +#define BN_MINIMUM_CORE_ABI_VERSION 94 |
48 | 48 |
|
49 | 49 | #ifdef __GNUC__ |
50 | 50 | #ifdef BINARYNINJACORE_LIBRARY |
@@ -7555,10 +7555,10 @@ extern "C" |
7555 | 7555 | BNDebugInfo* const debugInfo, const BNDataVariableAndName* var); |
7556 | 7556 | BINARYNINJACOREAPI BNDataVariableAndName* BNGetDebugDataVariables( |
7557 | 7557 | BNDebugInfo* const debugInfo, const char* const name, size_t* count); |
7558 | | - BINARYNINJACOREAPI BNDataVariableAndName* BNGetDebugDataVariableByName( |
7559 | | - BNDebugInfo* const debugInfo, const char* const parserName, const char* const variableName); |
7560 | | - BINARYNINJACOREAPI BNDataVariableAndName* BNGetDebugDataVariableByAddress( |
7561 | | - BNDebugInfo* const debugInfo, const char* const parserName, const uint64_t address); |
| 7558 | + BINARYNINJACOREAPI bool BNGetDebugDataVariableByName( |
| 7559 | + BNDebugInfo* const debugInfo, const char* const parserName, const char* const variableName, BNDataVariableAndName* var); |
| 7560 | + BINARYNINJACOREAPI bool BNGetDebugDataVariableByAddress( |
| 7561 | + BNDebugInfo* const debugInfo, const char* const parserName, const uint64_t address, BNDataVariableAndName* var); |
7562 | 7562 | BINARYNINJACOREAPI BNDataVariableAndName* BNGetDebugDataVariablesByName( |
7563 | 7563 | BNDebugInfo* const debugInfo, const char* const variableName, size_t* count); |
7564 | 7564 | BINARYNINJACOREAPI BNDataVariableAndNameAndDebugParser* BNGetDebugDataVariablesByAddress( |
|
0 commit comments