summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorAlexander Taylor <alex@vector35.com>2025-10-15 21:36:02 -0400
committerAlexander Taylor <alex@vector35.com>2025-10-15 22:03:27 -0400
commit96c56a41f73d9ac1a5ba7e6efd06f0145b834f24 (patch)
treed59ed094b5e0cef97c46e30e156c2ccccb748015 /binaryninjaapi.h
parent3f39c3fc3d5603bba111502eee26b5fbbb0077fe (diff)
Required API changes for Enterprise find files.
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h11
1 files changed, 10 insertions, 1 deletions
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<std::pair<std::string, std::string>> SearchUsers(const std::string& prefix);
+ struct FileSearchMatch
+ {
+ std::string projectId;
+ std::string projectName;
+ std::string fileId;
+ std::string fileName;
+ };
+
+ std::vector<FileSearchMatch> FindFiles(const std::string& name);
+
/*!
Pull list of users from the remote. Necessary before calling GetUsers()
@@ -22487,4 +22497,3 @@ template<> struct fmt::formatter<BinaryNinja::Type>
return it;
}
};
-