summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--binaryninjaapi.h6
-rw-r--r--python/binaryview.py6
2 files changed, 6 insertions, 6 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 71b506e0..941c7541 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -4949,7 +4949,7 @@ namespace BinaryNinja {
/*! GetOriginalBase queries for the original image base in the BinaryView, unaffected by any rebasing operations
- \deprecated This API has been deprecated in favor of GetOriginalImageBase in 4.0.xxxx
+ \deprecated This API has been deprecated in favor of GetOriginalImageBase in 4.1.5902
\return the original image base of the BinaryView
*/
@@ -4958,7 +4958,7 @@ namespace BinaryNinja {
/*! SetOriginalBase sets the original image base in the BinaryView, unaffected by any rebasing operations.
* This is only intended to be used by Binary View implementations to provide this value. Regular users should
* NOT change this value.
- \deprecated This API has been deprecated in favor of SetOriginalImageBase in 4.0.xxxx
+ \deprecated This API has been deprecated in favor of SetOriginalImageBase in 4.1.5902
\param base the original image base of the binary view
*/
@@ -6689,7 +6689,7 @@ namespace BinaryNinja {
std::vector<std::string> GetUniqueSectionNames(const std::vector<std::string>& names);
/*! Get the list of allocated ranges
- \deprecated This API has been deprecated in favor of GetMappedAddressRanges in 4.0.xxxx
+ \deprecated This API has been deprecated in favor of GetMappedAddressRanges in 4.1.5902
\return The list of allocated ranges
*/
diff --git a/python/binaryview.py b/python/binaryview.py
index e5c832de..cc4749d3 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -2892,12 +2892,12 @@ class BinaryView:
@property
def original_base(self) -> int:
- """Original image base of the binary Deprecated: 4.0.xxxx Use original_image_base instead."""
+ """Original image base of the binary. Deprecated: 4.1.5902 Use `original_image_base` instead."""
return core.BNGetOriginalImageBase(self.handle)
@original_base.setter
def original_base(self, base: int) -> None:
- """Set original image base of the binary. Only intended for binary view implementations. Deprecated: 4.0.xxxx Use original_image_base instead."""
+ """Set original image base of the binary. Only intended for binary view implementations. Deprecated: 4.1.5902 Use `original_image_base` instead."""
return core.BNSetOriginalImageBase(self.handle, base)
@property
@@ -3308,7 +3308,7 @@ class BinaryView:
@property
def allocated_ranges(self) -> List['variable.AddressRange']:
- """List of valid address ranges for this view (read-only) Deprecated: 4.0.xxxx Use mapped_address_ranges instead."""
+ """List of valid address ranges for this view (read-only) Deprecated: 4.1.5902 Use mapped_address_ranges instead."""
count = ctypes.c_ulonglong(0)
range_list = core.BNGetAllocatedRanges(self.handle, count)
assert range_list is not None, "core.BNGetAllocatedRanges returned None"