From 5823930694686322430747031324833666177725 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Wed, 16 Aug 2023 17:34:39 -0400 Subject: Add DefineUserTypes to Rust/Python (+ fix return type) --- binaryninjaapi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index cb33aeff..efe9a22a 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -5219,7 +5219,7 @@ namespace BinaryNinja { QualifiedName GetTypeNameById(const std::string& id); bool IsTypeAutoDefined(const QualifiedName& name); QualifiedName DefineType(const std::string& id, const QualifiedName& defaultName, Ref type); - void DefineTypes(const std::vector>& types, std::function progress = {}); + std::unordered_map DefineTypes(const std::vector>& types, std::function progress = {}); void DefineUserType(const QualifiedName& name, Ref type); void DefineUserTypes(const std::vector& types, std::function progress = {}); void DefineUserTypes(const std::vector& types, std::function progress = {}); -- cgit v1.3.1