diff options
| author | Josh Ferrell <josh@vector35.com> | 2024-08-28 14:52:31 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2024-08-28 14:52:31 -0400 |
| commit | d041e78a06686290aaa4a465dffe3a0ae648ba02 (patch) | |
| tree | 7c8338162af29c414cb8c4011133f13c1b54398a /binaryninjaapi.h | |
| parent | 18445ef846437fa52f9ebaa54109c8abc551c49d (diff) | |
Add RemoteFolder C++ APIs
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 70d40b47..3c6bc72a 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -18217,6 +18217,15 @@ namespace BinaryNinja::Collaboration { public: RemoteFolder(BNRemoteFolder* remoteFolder); + + Ref<ProjectFolder> GetCoreFolder(); + Ref<RemoteProject> GetProject(); + Ref<RemoteFolder> GetParent(); + Ref<Remote> GetRemote(); + std::string GetId(); + std::string GetUrl(); + std::string GetName(); + std::string GetDescription(); }; class RemoteFile; |
