diff options
Diffstat (limited to 'binaryninjaapi.h')
| -rw-r--r-- | binaryninjaapi.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 6f84250c..e29f4084 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -3608,6 +3608,7 @@ namespace BinaryNinja { Ref<ProjectFolder> GetParent() const; bool SetParent(Ref<ProjectFolder> parent); bool Export(const std::string& destination, const ProgressFunction& progressCallback = {}) const; + std::vector<Ref<ProjectFile>> GetFiles() const; }; /*! @@ -3688,6 +3689,8 @@ namespace BinaryNinja { Ref<ProjectFile> GetFileById(const std::string& id) const; Ref<ProjectFile> GetFileByPathOnDisk(const std::string& path) const; std::vector<Ref<ProjectFile>> GetFilesByPathInProject(const std::string& path) const; + std::vector<Ref<ProjectFile>> GetFilesInFolder(Ref<ProjectFolder> folder) const; + bool PushFile(Ref<ProjectFile> file); bool DeleteFile_(Ref<ProjectFile> file); |
