summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2019-05-27 00:51:39 -0400
committerBrian Potchik <brian@vector35.com>2019-05-27 00:51:39 -0400
commit312950417858a9d89446889fdee2e5988a699861 (patch)
tree6cda347356c12d81327ae7b7adcf3b0ddc178645 /binaryninjacore.h
parenta3b1547175eb776498f15ff662ecf309a7af8009 (diff)
Add API to query settings properties.
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index e29b813c..cc707770 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -3784,6 +3784,7 @@ extern "C"
// Settings APIs
BINARYNINJACOREAPI bool BNSettingsRegisterGroup(const char* registry, const char* group, const char* title);
BINARYNINJACOREAPI bool BNSettingsRegisterSetting(const char* registry, const char* id, const char* properties);
+ BINARYNINJACOREAPI const char** BNSettingsQueryPropertyStringList(const char* registry, const char* id, const char* property, size_t* inoutSize);
BINARYNINJACOREAPI bool BNSettingsUpdateProperty(const char* registry, const char* id, const char* property);
BINARYNINJACOREAPI bool BNSettingsUpdateBoolProperty(const char* registry, const char* id, const char* property, bool value);
BINARYNINJACOREAPI bool BNSettingsUpdateDoubleProperty(const char* registry, const char* id, const char* property, double value);