From 5d01e8e553280f1f9e7676ea32af183f6e23efd7 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Wed, 11 Sep 2019 11:38:45 -0400 Subject: Add ability to open a database with options. --- binaryninjaapi.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index cc5ff914..a7d66e9b 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -886,6 +886,7 @@ namespace BinaryNinja Ref OpenExistingDatabase(const std::string& path); Ref OpenExistingDatabase(const std::string& path, const std::function& progressCallback); + Ref OpenDatabaseForConfiguration(const std::string& path); bool SaveAutoSnapshot(BinaryView* data); bool SaveAutoSnapshot(BinaryView* data, const std::function& progressCallback); @@ -1698,6 +1699,7 @@ namespace BinaryNinja std::vector GetRawMetadata(const std::string& key); uint64_t GetUIntMetadata(const std::string& key); + std::vector GetLoadSettingsTypeNames(); Ref GetLoadSettings(const std::string& typeName); void SetLoadSettings(const std::string& typeName, Ref settings); -- cgit v1.3.1