summaryrefslogtreecommitdiff
path: root/binaryninjaapi.h
diff options
context:
space:
mode:
Diffstat (limited to 'binaryninjaapi.h')
-rw-r--r--binaryninjaapi.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h
index 0c86e026..2d21ef6d 100644
--- a/binaryninjaapi.h
+++ b/binaryninjaapi.h
@@ -2938,7 +2938,8 @@ namespace BinaryNinja {
Ref<ProjectFile> CreateFileUnsafe(const std::vector<uint8_t>& contents, Ref<ProjectFolder> folder, const std::string& name, const std::string& description, const std::string& id, int64_t creationTimestamp, const ProgressFunction& progressCallback = {});
std::vector<Ref<ProjectFile>> GetFiles() const;
Ref<ProjectFile> GetFileById(const std::string& id) const;
- Ref<ProjectFile> GetFileByPathOnDisk(const std::string& path);
+ Ref<ProjectFile> GetFileByPathOnDisk(const std::string& path) const;
+ std::vector<Ref<ProjectFile>> GetFilesByPathInProject(const std::string& path) const;
void PushFile(Ref<ProjectFile> file);
bool DeleteFile_(Ref<ProjectFile> file);