diff options
| author | Alexander Taylor <alex@vector35.com> | 2025-10-15 21:36:02 -0400 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2025-10-15 22:03:27 -0400 |
| commit | 96c56a41f73d9ac1a5ba7e6efd06f0145b834f24 (patch) | |
| tree | d59ed094b5e0cef97c46e30e156c2ccccb748015 /binaryninjaapi.h | |
| parent | 3f39c3fc3d5603bba111502eee26b5fbbb0077fe (diff) | |
Required API changes for Enterprise find files.
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 11 |
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; } }; - |
