summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
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;
};