summaryrefslogtreecommitdiff
path: root/python/settings.py
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2024-09-30 18:42:03 -0400
committerBrian Potchik <brian@vector35.com>2024-09-30 18:42:03 -0400
commitc8bef7267b0ec3b36167b679263bbfd4834a5b88 (patch)
tree0e65592597f8b76a5f9fa5b74e1ed3709554058f /python/settings.py
parent2e272f7efffb61eec2f54a740a9deabc4829c97d (diff)
Use title for generation of function analysis actions.
Diffstat (limited to 'python/settings.py')
-rw-r--r--python/settings.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/settings.py b/python/settings.py
index 8737e652..afa9983a 100644
--- a/python/settings.py
+++ b/python/settings.py
@@ -268,6 +268,9 @@ class Settings:
core.BNFreeStringList(result, length)
return out_list
+ def query_property_string(self, key: str, property_name: str) -> str:
+ return core.BNSettingsQueryPropertyString(self.handle, key, property_name)
+
def query_property_string_list(self, key: str, property_name: str) -> List[str]:
length = ctypes.c_ulonglong()
result = core.BNSettingsQueryPropertyStringList(self.handle, key, property_name, ctypes.byref(length))