From 96c56a41f73d9ac1a5ba7e6efd06f0145b834f24 Mon Sep 17 00:00:00 2001 From: Alexander Taylor Date: Wed, 15 Oct 2025 21:36:02 -0400 Subject: Required API changes for Enterprise find files. --- binaryninjaapi.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 72e803b5..a243f974 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -21603,6 +21603,16 @@ namespace BinaryNinja::Collaboration */ std::vector> SearchUsers(const std::string& prefix); + struct FileSearchMatch + { + std::string projectId; + std::string projectName; + std::string fileId; + std::string fileName; + }; + + std::vector FindFiles(const std::string& name); + /*! Pull list of users from the remote. Necessary before calling GetUsers() @@ -22487,4 +22497,3 @@ template<> struct fmt::formatter return it; } }; - -- cgit v1.3.1