summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2025-08-26 15:49:45 -0400
committerAlexander Taylor <alex@vector35.com>2025-11-04 22:08:25 -0500
commitae1dbe7e69e3a1d5cc69fa5362fba1b85ba5b6b8 (patch)
tree034f72677b3751a8d467d229192646f5ce1b40e0 /binaryninjaapi.h
parent21324fa57b44ba77e46be4952a02484cb8c3ef5c (diff)
Add project file dependencies
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index d3de5874..5460046b 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -3633,6 +3633,10 @@ namespace BinaryNinja {
bool SetFolder(Ref<ProjectFolder> folder);
bool Export(const std::string& destination) const;
int64_t GetCreationTimestamp() const;
+ bool AddDependency(Ref<ProjectFile> file);
+ bool RemoveDependency(Ref<ProjectFile> file);
+ std::vector<Ref<ProjectFile>> GetDependencies() const;
+ std::vector<Ref<ProjectFile>> GetRequiredBy() const;
};