From 312950417858a9d89446889fdee2e5988a699861 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Mon, 27 May 2019 00:51:39 -0400 Subject: Add API to query settings properties. --- binaryninjacore.h | 1 + 1 file changed, 1 insertion(+) (limited to 'binaryninjacore.h') 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); -- cgit v1.3.1